/* ===================================
   NEXTON ENTERPRISES - GLOBAL STYLES
   Light, Editorial, Minimal Design
   =================================== */

/* CSS RESET & BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 400;
    line-height: 1.7;
    color: #0F172A;
    background-color: #F8FAFC;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    color: #0F172A;
}

a {
    color: #1E3A8A;
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: #1E40AF;
}

/* CONTAINER */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
}

/* NAVIGATION */
.nav {
    background-color: #FFFFFF;
    border-bottom: 1px solid #E2E8F0;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #0F172A;
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-size: 15px;
    color: #475569;
    text-decoration: none;
    transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #1E3A8A;
}

@media (max-width: 768px) {
    .nav-links {
        gap: 20px;
    }
    
    .nav-link {
        font-size: 14px;
    }
}

/* HERO SECTION */
.hero {
    background-color: #FFFFFF;
    padding: 100px 0 80px;
    border-bottom: 1px solid #E2E8F0;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero-title {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 20px;
    color: #475569;
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    justify-content: center;
}

@media (max-width: 768px) {
    .hero {
        padding: 60px 0 50px;
    }
    
    .hero-title {
        font-size: 32px;
        margin-bottom: 20px;
    }
    
    .hero-subtitle {
        font-size: 18px;
        margin-bottom: 32px;
    }
}

/* PAGE HERO */
.page-hero {
    background-color: #FFFFFF;
    padding: 80px 0 60px;
    border-bottom: 1px solid #E2E8F0;
    text-align: center;
}

.page-title {
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 20px;
}

.page-subtitle {
    font-size: 18px;
    color: #475569;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .page-hero {
        padding: 60px 0 40px;
    }
    
    .page-title {
        font-size: 32px;
    }
    
    .page-subtitle {
        font-size: 16px;
    }
}

/* TRUST SECTION */
.trust-section {
    background-color: #F8FAFC;
    padding: 40px 0;
    border-bottom: 1px solid #E2E8F0;
}

.trust-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.trust-text {
    font-size: 16px;
    color: #475569;
    line-height: 1.6;
}

/* SECTIONS */
.section {
    padding: 80px 0;
    background-color: #F8FAFC;
}

.section-alt {
    background-color: #FFFFFF;
    border-top: 1px solid #E2E8F0;
    border-bottom: 1px solid #E2E8F0;
}

.section-header {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.section-title {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 20px;
}

.section-intro {
    font-size: 18px;
    color: #475569;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-intro {
        font-size: 16px;
    }
}

/* EDITORIAL BLOCKS */
.editorial-block {
    max-width: 800px;
    margin: 0 auto 0;
    padding: 40px 0;
}

.editorial-heading {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #0F172A;
}

.editorial-text {
    font-size: 17px;
    color: #475569;
    line-height: 1.7;
}

.editorial-content {
    max-width: 800px;
    margin: 0 auto;
}

.editorial-paragraph {
    font-size: 17px;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 24px;
}

.editorial-list {
    list-style: none;
    margin: 32px 0;
}

.editorial-list li {
    font-size: 17px;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 16px;
    padding-left: 28px;
    position: relative;
}

.editorial-list li:before {
    content: "—";
    position: absolute;
    left: 0;
    color: #1E3A8A;
}

@media (max-width: 768px) {
    .editorial-block {
        padding: 32px 0;
    }
    
    .editorial-heading {
        font-size: 22px;
    }
    
    .editorial-text,
    .editorial-paragraph,
    .editorial-list li {
        font-size: 16px;
    }
}

/* DIVIDERS */
.divider {
    height: 1px;
    background-color: #E2E8F0;
    max-width: 800px;
    margin: 0 auto;
}

.divider-large {
    height: 1px;
    background-color: #E2E8F0;
    margin: 80px 0;
}

@media (max-width: 768px) {
    .divider-large {
        margin: 60px 0;
    }
}

/* PROCESS FLOW */
.process-flow {
    max-width: 900px;
    margin: 0 auto;
}

.process-step {
    padding: 40px 0;
    border-bottom: 1px solid #E2E8F0;
}

.process-step:last-child {
    border-bottom: none;
}

.process-number {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #1E3A8A;
    margin-bottom: 16px;
    letter-spacing: 0.05em;
}

.process-heading {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #0F172A;
}

.process-text {
    font-size: 17px;
    color: #475569;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .process-step {
        padding: 32px 0;
    }
    
    .process-heading {
        font-size: 20px;
    }
    
    .process-text {
        font-size: 16px;
    }
}

/* PRICING PREVIEW */
.pricing-preview {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto 40px;
}

.pricing-item {
    padding: 40px 32px;
    background-color: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 4px;
}

.pricing-heading {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #0F172A;
}

.pricing-description {
    font-size: 15px;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 24px;
}

.pricing-range {
    margin-bottom: 12px;
}

.price-amount {
    font-size: 20px;
    font-weight: 600;
    color: #0F172A;
    display: block;
}

.price-currency {
    font-size: 14px;
    color: #475569;
    display: block;
    margin-top: 4px;
}

.pricing-note {
    max-width: 700px;
    margin: 0 auto 40px;
    text-align: center;
}

.pricing-note p {
    font-size: 15px;
    color: #475569;
    line-height: 1.6;
}

@media (max-width: 968px) {
    .pricing-preview {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* PRICING PAGE */
.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-card {
    padding: 48px 40px;
    background-color: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 4px;
}

.pricing-card-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #0F172A;
}

.pricing-card-description {
    font-size: 17px;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 32px;
}

.pricing-details {
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid #E2E8F0;
}

.price-block {
    margin-bottom: 16px;
}

.price-main {
    font-size: 32px;
    font-weight: 600;
    color: #0F172A;
}

.price-label {
    font-size: 15px;
    color: #475569;
    margin-top: 4px;
}

.pricing-includes {
    margin-bottom: 24px;
}

.includes-heading {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #0F172A;
}

.includes-list {
    list-style: none;
}

.includes-list li {
    font-size: 15px;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
}

.includes-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #1E3A8A;
    font-weight: bold;
}

.pricing-duration {
    font-size: 15px;
    color: #475569;
    padding-top: 24px;
    border-top: 1px solid #E2E8F0;
}

@media (max-width: 768px) {
    .pricing-card {
        padding: 32px 24px;
    }
    
    .pricing-card-title {
        font-size: 24px;
    }
    
    .price-main {
        font-size: 28px;
    }
}

/* PRICING NOTES */
.pricing-notes {
    max-width: 800px;
    margin: 0 auto;
}

.notes-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 40px;
    text-align: center;
}

.note-block {
    margin-bottom: 40px;
}

.note-heading {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #0F172A;
}

.note-text {
    font-size: 16px;
    color: #475569;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .notes-title {
        font-size: 24px;
    }
    
    .note-heading {
        font-size: 18px;
    }
}

/* SERVICE DETAIL */
.service-detail {
    max-width: 800px;
    margin: 0 auto;
}

.service-title {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 32px;
    color: #0F172A;
}

.service-content {
    font-size: 17px;
    color: #475569;
    line-height: 1.7;
}

.service-subheading {
    font-size: 22px;
    font-weight: 600;
    margin-top: 32px;
    margin-bottom: 16px;
    color: #0F172A;
}

.service-text {
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .service-title {
        font-size: 26px;
    }
    
    .service-subheading {
        font-size: 20px;
    }
    
    .service-content,
    .service-text {
        font-size: 16px;
    }
}

/* CONTACT PAGE */
.contact-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 80px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-section-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #0F172A;
}

.contact-section-text {
    font-size: 16px;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 32px;
}

@media (max-width: 968px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

/* CONTACT FORM */
.contact-form {
    background-color: #FFFFFF;
    padding: 40px;
    border: 1px solid #E2E8F0;
    border-radius: 4px;
}

.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    font-size: 15px;
    font-weight: 500;
    color: #0F172A;
    margin-bottom: 8px;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 12px 16px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #0F172A;
    background-color: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 4px;
    transition: border-color 0.2s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #1E3A8A;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-privacy {
    margin-bottom: 24px;
}

.privacy-text {
    font-size: 13px;
    color: #475569;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .contact-form {
        padding: 32px 24px;
    }
}

/* CONTACT INFO */
.contact-info-section {
    padding-top: 8px;
}

.contact-info-block {
    margin-bottom: 32px;
}

.contact-info-heading {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #0F172A;
}

.contact-info-text {
    font-size: 15px;
    color: #475569;
    line-height: 1.7;
}

.contact-info-note {
    font-size: 14px;
    color: #64748B;
    margin-top: 8px;
}

/* LEGAL CONTENT */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-heading {
    font-size: 24px;
    font-weight: 600;
    margin-top: 48px;
    margin-bottom: 16px;
    color: #0F172A;
}

.legal-heading:first-child {
    margin-top: 0;
}

.legal-text {
    font-size: 16px;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 20px;
}

.legal-list {
    list-style: none;
    margin: 20px 0;
}

.legal-list li {
    font-size: 16px;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
}

.legal-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #1E3A8A;
    font-weight: bold;
}

@media (max-width: 768px) {
    .legal-heading {
        font-size: 22px;
        margin-top: 40px;
    }
}

/* BUTTONS */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: #1E3A8A;
    color: #FFFFFF;
    border: 2px solid #1E3A8A;
}

.btn-primary:hover {
    background-color: #1E40AF;
    border-color: #1E40AF;
    color: #FFFFFF;
}

.btn-secondary {
    background-color: transparent;
    color: #1E3A8A;
    border: 2px solid #1E3A8A;
}

.btn-secondary:hover {
    background-color: #1E3A8A;
    color: #FFFFFF;
}

.btn-full {
    width: 100%;
}

.cta-center {
    text-align: center;
}

@media (max-width: 768px) {
    .btn {
        padding: 12px 28px;
        font-size: 14px;
    }
}

/* FINAL CTA */
.final-cta {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.final-cta-title {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #0F172A;
}

.final-cta-text {
    font-size: 18px;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 32px;
}

@media (max-width: 768px) {
    .final-cta-title {
        font-size: 26px;
    }
    
    .final-cta-text {
        font-size: 16px;
    }
}

/* FOOTER */
.footer {
    background-color: #FFFFFF;
    border-top: 1px solid #E2E8F0;
    padding: 60px 0 32px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 48px;
}

.footer-section {
    min-width: 0;
}

.footer-heading {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #0F172A;
}

.footer-text {
    font-size: 14px;
    color: #475569;
    line-height: 1.7;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-size: 14px;
    color: #475569;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #1E3A8A;
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid #E2E8F0;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #64748B;
}

@media (max-width: 968px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
}

@media (max-width: 568px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}
