/* ==============================
   Alekhya – Publication Support
   Color Palette:
     Primary:   #2A2F4F (Deep Indigo)
     Secondary: #E89F3E (Saffron Gold)
     Accent:    #8BA389 (Sage Green)
     BG:        #F9F9FB (Off-White)
   Fonts: Poppins (headings), Inter (body)
   ============================== */

/* --- Reset & Base --- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #1a1a2e;
    background: #F9F9FB;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

h1, h2, h3, h4, h5 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.25;
    color: #2A2F4F;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 96px 0;
}

.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 64px;
}

.section-tag {
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #E89F3E;
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.5rem;
    color: #2A2F4F;
    margin-bottom: 16px;
}

.section-desc {
    font-size: 1.125rem;
    color: #555;
    line-height: 1.7;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 8px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn i {
    font-size: 0.875rem;
}

.btn-primary {
    background: #E89F3E;
    color: #fff;
    border-color: #E89F3E;
}

.btn-primary:hover {
    background: #d48d2e;
    border-color: #d48d2e;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(232, 159, 62, 0.35);
}

.btn-secondary {
    background: transparent;
    color: #2A2F4F;
    border-color: #2A2F4F;
}

.btn-secondary:hover {
    background: #2A2F4F;
    color: #fff;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #2A2F4F;
    border-color: #2A2F4F;
}

.btn-outline:hover {
    background: #2A2F4F;
    color: #fff;
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1.0625rem;
}

.btn-nav {
    background: #E89F3E;
    color: #fff !important;
    padding: 10px 22px !important;
    border-radius: 8px;
    font-size: 0.875rem !important;
}

.btn-nav:hover {
    background: #d48d2e !important;
    color: #fff !important;
}

/* --- Top Bar --- */
.topbar {
    background: #2A2F4F;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.8125rem;
    padding: 8px 0;
    display: none;
}

.topbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.topbar-contact {
    display: flex;
    align-items: center;
    gap: 24px;
}

.topbar-contact a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.85);
    transition: color 0.3s ease;
}

.topbar-contact a:hover {
    color: #E89F3E;
}

.topbar-contact i {
    font-size: 0.75rem;
}

.topbar-tag {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 1px;
    color: #E89F3E;
}

@media (min-width: 769px) {
    .topbar {
        display: block;
    }
}

/* --- Free Tools Section --- */
.free-tools {
    background: #fff;
}

.free-tools-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.free-tool-card {
    text-align: center;
    padding: 40px 28px;
    background: #F9F9FB;
    border-radius: 16px;
    border: 1px solid rgba(42, 47, 79, 0.06);
    transition: all 0.3s ease;
}

.free-tool-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(42, 47, 79, 0.08);
    border-color: rgba(232, 159, 62, 0.2);
}

.free-tool-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(232, 159, 62, 0.12), rgba(42, 47, 79, 0.06));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #E89F3E;
}

.free-tool-card h3 {
    font-size: 1.125rem;
    margin-bottom: 12px;
}

.free-tool-card p {
    font-size: 0.875rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.8125rem;
}

/* --- Inline CTA --- */
.cta-inline {
    background: linear-gradient(135deg, #E89F3E 0%, #d48d2e 100%);
    padding: 32px 0;
}

.cta-inline .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.cta-inline p {
    font-size: 1.125rem;
    color: #fff;
    font-weight: 500;
}

.cta-inline p strong {
    font-weight: 700;
}

.cta-inline .btn-primary {
    background: #2A2F4F;
    border-color: #2A2F4F;
    color: #fff;
    white-space: nowrap;
}

.cta-inline .btn-primary:hover {
    background: #1a1f3a;
    border-color: #1a1f3a;
    box-shadow: 0 8px 24px rgba(42, 47, 79, 0.3);
}

.cta-inline-alt {
    background: linear-gradient(135deg, #2A2F4F 0%, #3d4466 100%);
}

.cta-inline-alt .btn-primary {
    background: #E89F3E;
    border-color: #E89F3E;
}

.cta-inline-alt .btn-primary:hover {
    background: #d48d2e;
    border-color: #d48d2e;
    box-shadow: 0 8px 24px rgba(232, 159, 62, 0.3);
}

/* --- Navigation --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(249, 249, 251, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(42, 47, 79, 0.06);
    transition: all 0.3s ease;
}

@media (min-width: 769px) {
    .navbar {
        top: 40px;
    }
}

.navbar.scrolled {
    box-shadow: 0 4px 24px rgba(42, 47, 79, 0.08);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #2A2F4F, #3d4466);
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 1.25rem;
    border-radius: 10px;
}

.logo-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.375rem;
    color: #2A2F4F;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: #444;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: #E89F3E;
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #2A2F4F;
}

.nav-link:hover::after {
    width: 100%;
}

/* Mobile Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #2A2F4F;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* --- Nav Dropdown --- */
.nav-dropdown {
    position: relative;
}

.nav-dropdown .nav-link i {
    font-size: 0.625rem;
    margin-left: 4px;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 16px 48px rgba(42, 47, 79, 0.15);
    padding: 16px;
    min-width: 280px;
    opacity: 0;
    pointer-events: none;
    transition: all 0.25s ease;
    border: 1px solid rgba(42, 47, 79, 0.06);
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    pointer-events: all;
    transform: translateX(-50%) translateY(4px);
}

.dropdown-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 0.8125rem;
    font-weight: 500;
    color: #444;
    transition: all 0.2s ease;
}

.dropdown-item i {
    width: 20px;
    text-align: center;
    color: #E89F3E;
    font-size: 0.875rem;
}

.dropdown-item:hover {
    background: #F9F9FB;
    color: #2A2F4F;
}

/* --- Hero Section --- */
.hero {
    padding: 160px 0 96px;
    background: linear-gradient(135deg, #F9F9FB 0%, #eef0f5 100%);
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.hero-title {
    font-size: 2.75rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #2A2F4F;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 32px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.trust-bar {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid rgba(42, 47, 79, 0.1);
}

.trust-label {
    font-size: 0.8125rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.trust-logos {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    font-weight: 600;
    color: #2A2F4F;
    font-size: 0.9375rem;
}

.trust-logos .dot {
    color: #E89F3E;
    font-weight: bold;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.hero-shape {
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(232, 159, 62, 0.15), rgba(42, 47, 79, 0.08));
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.05); opacity: 1; }
}

.hero-card {
    position: absolute;
    background: #fff;
    padding: 20px 28px;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(42, 47, 79, 0.12);
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: #2A2F4F;
}

.hero-card i {
    font-size: 1.5rem;
    color: #E89F3E;
}

/* --- Who We Are Section --- */
.who-we-are {
    background: #fff;
}

.who-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    align-items: center;
}

.who-intro p {
    font-size: 0.9375rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 24px;
}

.who-benefits {
    display: grid;
    gap: 10px;
}

.who-benefits li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9375rem;
    color: #444;
}

.who-benefits li i {
    color: #8BA389;
    font-size: 1rem;
    flex-shrink: 0;
}

.who-icon-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.who-icon-card {
    text-align: center;
    padding: 32px 16px;
    background: #F9F9FB;
    border-radius: 16px;
    border: 1px solid rgba(42, 47, 79, 0.06);
    transition: all 0.3s ease;
}

.who-icon-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(42, 47, 79, 0.08);
    border-color: rgba(232, 159, 62, 0.2);
}

.who-icon-card i {
    font-size: 2rem;
    color: #E89F3E;
    margin-bottom: 12px;
}

.who-icon-card span {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.875rem;
    color: #2A2F4F;
}

/* --- Services Grid Section --- */
.services-grid {
    background: #F9F9FB;
}

.sgrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.sgrid-card {
    background: #fff;
    padding: 32px 24px;
    border-radius: 16px;
    border: 1px solid rgba(42, 47, 79, 0.06);
    transition: all 0.3s ease;
    text-align: center;
}

.sgrid-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(42, 47, 79, 0.08);
}

.sgrid-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, rgba(232, 159, 62, 0.12), rgba(42, 47, 79, 0.06));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: #E89F3E;
}

.sgrid-card h3 {
    font-size: 1.0625rem;
    margin-bottom: 8px;
}

.sgrid-card p {
    font-size: 0.875rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 16px;
}

.sgrid-card a {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #E89F3E;
    transition: color 0.2s ease;
}

.sgrid-card a i {
    font-size: 0.75rem;
    transition: transform 0.2s ease;
}

.sgrid-card a:hover {
    color: #d48d2e;
}

.sgrid-card a:hover i {
    transform: translateX(4px);
}

/* --- Why Choose Section --- */
.why-choose {
    background: #fff;
}

.why-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    align-items: center;
}

.why-text p {
    font-size: 0.9375rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 16px;
}

.why-text .btn {
    margin-top: 8px;
}

.why-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.why-stat {
    text-align: center;
    padding: 28px 16px;
    background: linear-gradient(135deg, #2A2F4F, #3d4466);
    border-radius: 12px;
    color: #fff;
}

.why-num {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 4px;
}

.why-stat span:last-child {
    font-size: 0.8125rem;
    opacity: 0.85;
}

/* --- Quote Section --- */
.quote-section {
    background: #F9F9FB;
}

.quote-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 48px;
    align-items: start;
}

.quote-form {
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    border: 1px solid rgba(42, 47, 79, 0.06);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.quote-form select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid rgba(42, 47, 79, 0.12);
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    color: #333;
    background: #F9F9FB;
    transition: all 0.3s ease;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%232A2F4F' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    cursor: pointer;
}

.quote-form select:focus {
    outline: none;
    border-color: #E89F3E;
    box-shadow: 0 0 0 3px rgba(232, 159, 62, 0.12);
    background-color: #fff;
}

.quote-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.quote-testimonial {
    background: #fff;
    padding: 24px;
    border-radius: 12px;
    border: 1px solid rgba(42, 47, 79, 0.06);
}

.quote-testimonial i {
    color: #E89F3E;
    font-size: 1.25rem;
    margin-bottom: 8px;
    opacity: 0.5;
}

.quote-testimonial p {
    font-size: 0.875rem;
    color: #555;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 8px;
}

.quote-testimonial span {
    font-size: 0.75rem;
    color: #999;
    font-weight: 600;
}

/* --- Promise Section --- */
.promise {
    background: #fff;
}

.promise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.promise-card {
    padding: 40px 32px;
    border-radius: 16px;
    background: #F9F9FB;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.promise-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(42, 47, 79, 0.08);
    border-color: rgba(232, 159, 62, 0.2);
}

.promise-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(232, 159, 62, 0.12), rgba(42, 47, 79, 0.06));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #E89F3E;
}

.promise-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.promise-card p {
    font-size: 0.9375rem;
    color: #666;
    line-height: 1.7;
}

/* --- Pricing Section --- */
.pricing {
    background: #F9F9FB;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    align-items: start;
}

.pricing-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 32px;
    border: 1px solid rgba(42, 47, 79, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(42, 47, 79, 0.1);
}

.pricing-card.featured {
    border-color: #E89F3E;
    box-shadow: 0 8px 32px rgba(232, 159, 62, 0.15);
    transform: scale(1.03);
    z-index: 1;
}

.pricing-card.featured:hover {
    transform: scale(1.03) translateY(-4px);
    box-shadow: 0 16px 48px rgba(232, 159, 62, 0.2);
}

.pricing-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #8BA389;
    margin-bottom: 16px;
}

.pricing-badge.popular {
    background: #E89F3E;
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
}

.pricing-name {
    font-size: 1.25rem;
    margin-bottom: 16px;
    min-height: 56px;
}

.pricing-amount {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: #2A2F4F;
    margin-bottom: 24px;
}

.pricing-features {
    margin-bottom: 32px;
    text-align: left;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.9375rem;
    color: #555;
}

.pricing-features li i {
    color: #8BA389;
    margin-top: 3px;
    flex-shrink: 0;
}

.pricing-card .btn {
    width: 100%;
    justify-content: center;
}

/* --- How It Works --- */
.how-it-works {
    background: #fff;
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
}

.step {
    text-align: center;
    padding: 32px 24px;
    background: #F9F9FB;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(42, 47, 79, 0.06);
}

.step-number {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(232, 159, 62, 0.3);
    margin-bottom: 12px;
    line-height: 1;
}

.step-content h3 {
    font-size: 1.125rem;
    margin-bottom: 8px;
}

.step-content p {
    font-size: 0.875rem;
    color: #666;
    line-height: 1.6;
}

.step-divider {
    display: none;
}

/* --- Testimonials --- */
.testimonials {
    background: #F9F9FB;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.testimonial-card {
    background: #fff;
    padding: 36px;
    border-radius: 16px;
    border: 1px solid rgba(42, 47, 79, 0.06);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    box-shadow: 0 8px 32px rgba(42, 47, 79, 0.06);
    transform: translateY(-2px);
}

.testimonial-stars {
    color: #E89F3E;
    margin-bottom: 16px;
    font-size: 0.9375rem;
}

.testimonial-text {
    font-size: 1rem;
    color: #444;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #2A2F4F, #3d4466);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
    flex-shrink: 0;
}

.testimonial-author strong {
    display: block;
    font-size: 0.9375rem;
    color: #2A2F4F;
}

.testimonial-author span {
    font-size: 0.8125rem;
    color: #888;
}

/* --- About Section --- */
.about {
    background: #fff;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-bottom: 64px;
}

.about-story h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.about-story p {
    font-size: 0.9375rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 12px;
}

.mission-item {
    background: #F9F9FB;
    padding: 28px;
    border-radius: 12px;
    margin-bottom: 16px;
    border-left: 4px solid #E89F3E;
}

.mission-label {
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 0.9375rem;
    color: #2A2F4F;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mission-item p {
    font-size: 0.9375rem;
    color: #555;
    line-height: 1.7;
}

/* Values */
.values {
    margin-bottom: 64px;
}

.values > h3 {
    font-size: 1.5rem;
    margin-bottom: 32px;
    text-align: center;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.value-card {
    text-align: center;
    padding: 28px 20px;
    background: #F9F9FB;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(42, 47, 79, 0.06);
}

.value-card i {
    font-size: 1.75rem;
    color: #E89F3E;
    margin-bottom: 16px;
}

.value-card h4 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.value-card p {
    font-size: 0.8125rem;
    color: #666;
    line-height: 1.6;
}

/* Team */
.team {
    margin-bottom: 64px;
}

.team > h3 {
    font-size: 1.5rem;
    margin-bottom: 32px;
    text-align: center;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.team-card {
    text-align: center;
    padding: 36px 24px;
    background: #F9F9FB;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(42, 47, 79, 0.08);
}

.team-avatar {
    width: 72px;
    height: 72px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, #2A2F4F, #3d4466);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
}

.team-card h4 {
    font-size: 1.125rem;
    margin-bottom: 4px;
}

.team-role {
    display: block;
    font-size: 0.8125rem;
    color: #E89F3E;
    font-weight: 600;
    margin-bottom: 12px;
}

.team-card p {
    font-size: 0.8125rem;
    color: #666;
    line-height: 1.6;
}

/* Impact */
.impact {
    margin-bottom: 64px;
}

.impact > h3 {
    font-size: 1.5rem;
    margin-bottom: 32px;
    text-align: center;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

.impact-item {
    text-align: center;
    padding: 28px 16px;
    background: linear-gradient(135deg, #2A2F4F, #3d4466);
    border-radius: 12px;
    color: #fff;
}

.impact-number {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 4px;
}

.impact-label {
    font-size: 0.8125rem;
    opacity: 0.85;
}

/* Ethics */
.ethics {
    background: #F9F9FB;
    padding: 40px;
    border-radius: 16px;
}

.ethics > h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.ethics > p {
    font-size: 0.9375rem;
    color: #555;
    margin-bottom: 24px;
}

.ethics-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 24px;
}

.ethics-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9375rem;
    color: #555;
}

.ethics-list li i {
    color: #8BA389;
}

.ethics-quote {
    font-size: 1.0625rem;
    font-style: italic;
    color: #2A2F4F;
    border-left: 4px solid #E89F3E;
    padding-left: 20px;
    font-weight: 500;
}

/* --- FAQ Section --- */
.faq {
    background: #F9F9FB;
}

.faq-list {
    max-width: 720px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    border-radius: 12px;
    margin-bottom: 12px;
    border: 1px solid rgba(42, 47, 79, 0.06);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: none;
    border: none;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #2A2F4F;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(232, 159, 62, 0.04);
}

.faq-question i {
    transition: transform 0.3s ease;
    color: #E89F3E;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 24px;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 24px 20px;
}

.faq-answer p {
    font-size: 0.9375rem;
    color: #666;
    line-height: 1.7;
}

/* --- Guarantee Section --- */
.guarantee {
    background: #fff;
}

.guarantee-card {
    text-align: center;
    background: linear-gradient(135deg, #2A2F4F 0%, #3d4466 100%);
    padding: 64px 48px;
    border-radius: 24px;
    color: #fff;
}

.guarantee-icon {
    font-size: 3rem;
    color: #E89F3E;
    margin-bottom: 16px;
}

.guarantee-title {
    font-size: 2.25rem;
    color: #fff;
    margin-bottom: 16px;
}

.guarantee-text {
    font-size: 1.0625rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 32px;
    line-height: 1.7;
}

.guarantee-text em {
    display: block;
    font-size: 0.875rem;
    opacity: 0.7;
    margin-top: 8px;
}

.guarantee-card .btn-primary {
    background: #E89F3E;
    border-color: #E89F3E;
}

.guarantee-card .btn-primary:hover {
    background: #d48d2e;
    border-color: #d48d2e;
}

/* --- Contact Section --- */
.contact {
    background: #F9F9FB;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 48px;
    align-items: start;
}

.contact-form {
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    border: 1px solid rgba(42, 47, 79, 0.06);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #2A2F4F;
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid rgba(42, 47, 79, 0.12);
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    color: #333;
    background: #F9F9FB;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #E89F3E;
    box-shadow: 0 0 0 3px rgba(232, 159, 62, 0.12);
    background: #fff;
}

.btn-submit {
    grid-column: 1 / -1;
    justify-content: center;
    padding: 16px;
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(42, 47, 79, 0.06);
}

.contact-item i {
    font-size: 1.5rem;
    color: #E89F3E;
    margin-top: 2px;
}

.contact-item h4 {
    font-size: 0.9375rem;
    margin-bottom: 4px;
}

.contact-item a,
.contact-item p {
    font-size: 0.875rem;
    color: #666;
}

.contact-item a:hover {
    color: #E89F3E;
}

/* --- Footer --- */
.footer {
    background: #2A2F4F;
    color: rgba(255, 255, 255, 0.8);
    padding: 64px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .logo-text {
    color: #fff;
}

.footer-brand .logo-icon {
    background: linear-gradient(135deg, #E89F3E, #d48d2e);
}

.footer-brand p {
    margin: 16px 0 20px;
    font-size: 0.875rem;
    line-height: 1.7;
    max-width: 320px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s ease;
    font-size: 0.9375rem;
}

.footer-social a:hover {
    background: #E89F3E;
    color: #2A2F4F;
}

.footer-links h4 {
    color: #fff;
    font-size: 0.9375rem;
    margin-bottom: 16px;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.65);
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: #E89F3E;
}

    .footer-bottom {
        padding: 24px 0;
        text-align: center;
        font-size: 0.8125rem;
        color: rgba(255, 255, 255, 0.5);
    }

    .footer-bottom a {
        color: rgba(255, 255, 255, 0.6);
        text-decoration: underline;
    }

    .footer-bottom a:hover {
        color: #E89F3E;
    }

/* --- WhatsApp Float --- */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.5);
    color: #fff;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .trust-logos {
        justify-content: center;
    }

    .hero-visual {
        display: none;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

    .pricing-card.featured {
        transform: none;
    }

    .pricing-card.featured:hover {
        transform: translateY(-4px);
    }

    .who-grid {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .sgrid {
        grid-template-columns: repeat(2, 1fr);
    }

    .dropdown-menu {
        display: none;
    }

    .steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .impact-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .section {
        padding: 64px 0;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .nav-links {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(249, 249, 251, 0.98);
        backdrop-filter: blur(12px);
        flex-direction: column;
        padding: 32px 24px;
        gap: 20px;
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: all 0.3s ease;
        border-bottom: 1px solid rgba(42, 47, 79, 0.06);
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .nav-toggle {
        display: flex;
    }

    .hero {
        padding: 120px 0 64px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .who-grid {
        grid-template-columns: 1fr;
    }

    .who-icon-grid {
        grid-template-columns: 1fr 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .sgrid {
        grid-template-columns: 1fr;
    }

    .free-tools-grid {
        grid-template-columns: 1fr;
    }

    .cta-inline .container {
        flex-direction: column;
        text-align: center;
    }

    .promise-grid {
        grid-template-columns: 1fr;
    }

    .steps {
        grid-template-columns: 1fr;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .impact-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ethics-list {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-form {
        grid-template-columns: 1fr;
    }

    .quote-grid {
        grid-template-columns: 1fr;
    }

    .quote-form {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand p {
        margin: 16px auto 20px;
    }

    .footer-social {
        justify-content: center;
    }

    .guarantee-card {
        padding: 40px 24px;
    }

    .guarantee-title {
        font-size: 1.75rem;
    }
}
