:root {
    --primary: #0a2540;
    --primary-light: #1a3a5c;
    --primary-dark: #051b2e;
    --accent: #00d4aa;
    --accent-dark: #00a884;
    --accent-light: #e0f9f5;
    --secondary: #ff6b35;
    --secondary-light: #ffe8dc;
    --text-dark: #0a0e27;
    --text-muted: #64748b;
    --bg-light: #f8fafc;
    --bg-lighter: #f0f4f8;
    --border: #e2e8f0;
}

* {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    font-weight: 400;
    background: #ffffff;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.25;
    color: var(--primary-dark);
    word-break: break-word;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse-glow {
    0%,
    100% {
        box-shadow: 0 0 20px rgba(0, 212, 170, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(0, 212, 170, 0.6);
    }
}

/* ============ NAVBAR ============ */
.navbar {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    padding: 1.2rem 0;
    transition: all 0.4s ease;
    border-bottom: 1px solid transparent;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.02);
}

.navbar.scrolled {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    padding: 0.8rem 0;
}

.navbar-brand {
    font-weight: 900;
    font-size: 1.4rem;
    color: var(--primary-dark) !important;
    letter-spacing: -0.03em;
}

.navbar-brand .brand-accent {
    color: var(--accent);
    font-weight: 700;
}

.nav-link {
    color: var(--text-dark) !important;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.6rem 1.2rem !important;
    transition: all 0.3s;
    position: relative;
}

.nav-link::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--secondary));
    transform: translateX(-50%);
    transition: width 0.3s;
    border-radius: 3px;
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 100%;
}

.btn-nav-cta {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    box-shadow: 0 8px 25px rgba(10, 37, 64, 0.15);
}

.btn-nav-cta:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(10, 37, 64, 0.25);
    color: white;
}

/* ============ HERO ============ */
.hero {
    padding: 140px 0 100px;
    background: linear-gradient(135deg, #f0f4f8 0%, #e8f0f8 50%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: -20%;
    right: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(0, 212, 170, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse-glow 6s ease-in-out infinite;
}

.hero::after {
    content: "";
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-headline {
    font-size: clamp(2rem, 6vw, 3.8rem);
    font-weight: 900;
    color: var(--primary-dark);
    line-height: 1.3;
    margin-bottom: 1.5rem;
    letter-spacing: -0.025em;
    animation: slideInLeft 0.8s ease-out;
    word-break: break-word;
    overflow-wrap: break-word;
}

.hero-headline .highlight {
    background: linear-gradient(135deg, var(--accent), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 2.5rem;
    max-width: 750px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
    font-weight: 500;
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.btn-primary-custom {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: white;
    padding: 1.1rem 2.5rem;
    border-radius: 12px;
    font-weight: 700;
    border: none;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    transition: all 0.4s;
    box-shadow: 0 12px 35px rgba(10, 37, 64, 0.2);
}

.btn-primary-custom:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 50px rgba(10, 37, 64, 0.3);
    color: white;
}

.btn-secondary-custom {
    background: transparent;
    color: var(--primary-dark);
    padding: 1.1rem 2.5rem;
    border-radius: 12px;
    font-weight: 700;
    border: 2.5px solid var(--primary-dark);
    font-size: 1rem;
    transition: all 0.4s;
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
}

.btn-secondary-custom:hover {
    background: var(--primary-dark);
    color: white;
    transform: translateY(-5px);
}

.hero-visual {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(10, 37, 64, 0.2);
    animation: slideInRight 0.8s ease-out;
}

.hero-illustration {
    width: 100%;
    height: auto;
    display: block;
}

/* ============ SECTIONS ============ */
section {
    padding: 120px 0;
    position: relative;
}

.section-bg {
    background: linear-gradient(180deg, #f8fafc 0%, #f0f4f8 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-label {
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent-dark);
    font-weight: 900;
    font-size: 0.75rem;
    margin-bottom: 1rem;
    display: inline-block;
    background: rgba(0, 212, 170, 0.1);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    border: 1px solid rgba(0, 212, 170, 0.3);
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.2rem);
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
    font-weight: 900;
    line-height: 1.25;
    word-break: break-word;
    overflow-wrap: break-word;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-dark);
    max-width: 750px;
    margin: 0 auto;
    line-height: 1.8;
    font-weight: 500;
}

/* ============ PROBLEM SECTION ============ */
.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.problem-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid var(--border);
    height: 100%;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.problem-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary), var(--accent));
}

.problem-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border-color: var(--accent);
}

.problem-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15), rgba(255, 107, 53, 0.05));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2.2rem;
}

.problem-card h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
    font-weight: 800;
}

.problem-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.7;
}

/* ============ TOUGH GRID ============ */
.tough-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.tough-card {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: 16px;
    border: 1.5px solid var(--border);
    text-align: center;
    transition: all 0.4s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.tough-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent);
    box-shadow: 0 20px 60px rgba(0, 212, 170, 0.15);
}

.tough-number {
    width: 85px;
    height: 85px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: white;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 2.2rem;
    margin: 0 auto 1.5rem;
    box-shadow: 0 15px 40px rgba(0, 212, 170, 0.3);
}

.tough-card h4 {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    color: var(--primary-dark);
}

.tough-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.7;
}

/* ============ SERVICES ============ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 3rem;
}

.service-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.4s;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
    border-color: var(--accent);
}

.service-header {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: white;
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-header::before {
    content: "";
    position: absolute;
    top: -40px;
    right: -40px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.service-number {
    font-size: 4rem;
    font-weight: 900;
    opacity: 0.2;
    line-height: 1;
}

.service-header h3 {
    color: white;
    font-size: 1.5rem;
    margin: 1rem 0 0;
    position: relative;
    z-index: 2;
}

.service-body {
    padding: 2.5rem 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-body p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
}

.service-list li {
    padding: 0.7rem 0;
    font-size: 0.9rem;
    color: var(--text-dark);
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.service-list li::before {
    content: "✓";
    color: var(--accent-dark);
    font-weight: 900;
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* ============ WHY ME ============ */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 5rem;
}

.why-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid var(--border);
    transition: all 0.4s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.why-card:hover {
    border-color: var(--accent);
    box-shadow: 0 20px 60px rgba(0, 212, 170, 0.12);
    transform: translateY(-6px);
}

.why-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.2), rgba(0, 212, 170, 0.05));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}

.why-card h4 {
    font-size: 1.1rem;
    margin: 0;
    color: var(--primary-dark);
}

.why-card p {
    color: var(--text-muted);
    font-size: 0.92rem;
    margin: 0;
    line-height: 1.7;
}

/* ============ COMPARISON TABLE ============ */
.comparison-wrapper {
    background: white;
    border-radius: 20px;
    overflow: auto;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.comparison-table th {
    padding: 2rem 1.5rem;
    background: var(--primary-dark);
    color: white;
    font-weight: 800;
    text-align: left;
    border: none;
    white-space: nowrap;
}

.comparison-table th.manish-col {
    background: linear-gradient(135deg, var(--accent-dark), var(--accent));
    color: var(--primary-dark);
}

.comparison-table td {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border);
    vertical-align: middle;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table td.feature {
    font-weight: 700;
    color: var(--primary-dark);
    background: var(--bg-lighter);
    min-width: 180px;
}

.comparison-table td.manish-cell {
    background: rgba(0, 212, 170, 0.08);
    font-weight: 600;
}

.table-check {
    color: var(--accent-dark);
    font-weight: 900;
    font-size: 1.3rem;
}

/* ============ PROCESS ============ */
.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    position: relative;
}

.process-step {
    text-align: center;
    padding: 2.5rem 2rem;
    background: white;
    border-radius: 16px;
    border: 1px solid var(--border);
    transition: all 0.4s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.process-step:hover {
    transform: translateY(-8px);
    border-color: var(--accent);
    box-shadow: 0 20px 60px rgba(0, 212, 170, 0.15);
}

.step-number {
    width: 95px;
    height: 95px;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 900;
    margin: 0 auto 1.5rem;
    box-shadow: 0 15px 40px rgba(10, 37, 64, 0.25);
}

.process-step h4 {
    font-size: 1.15rem;
    margin-bottom: 0.8rem;
    color: var(--primary-dark);
}

.process-step p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.7;
}

/* ============ strategy section ============ */
.strategy-sec h2 {
    font-size: clamp(1.8rem, 3vw, 2.3rem); margin-bottom: 1.5rem; line-height: 1.3
}
.strategy-sec p {
    font-size: 1.05rem;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-weight: 500;
}
.strategy-sec ul {
    list-style: none; padding: 0
}
.strategy-sec ul li {
    margin-bottom: 1.2rem; display: flex; gap: 1rem
}
.strategy-sec ul li .tick {
    color: var(--accent-dark); font-size: 1.5rem; flex-shrink: 0
}

/* ============ ABOUT ============ */
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-photo {
    background-image: url("../img/Manish.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
    aspect-ratio: 1;
}

.about-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    gap: 1rem;
}

.about-placeholder i {
    font-size: 3rem;
    opacity: 0.5;
}

.about-content h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 0.5rem;
    line-height: 1.25;
    word-break: break-word;
}

.about-role {
    color: var(--accent-dark);
    font-weight: 800;
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.about-content p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.about-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.about-link {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    padding: 1rem 1.8rem;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: white;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(10, 37, 64, 0.15);
}

.about-link:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(10, 37, 64, 0.25);
    color: white;
}

/* ============ FAQ ============ */
.accordion-item {
    background: white;
    border: 1.5px solid var(--border);
    border-radius: 14px !important;
    margin-bottom: 1.2rem;
    overflow: hidden;
    transition: all 0.3s;
}

.accordion-item:hover {
    border-color: var(--accent);
    box-shadow: 0 10px 30px rgba(0, 212, 170, 0.1);
}

.accordion-button {
    font-weight: 700;
    color: var(--primary-dark);
    padding: 1.5rem;
    background: white;
    border: none;
    font-size: 1rem;
}

.accordion-button:not(.collapsed) {
    background: rgba(0, 212, 170, 0.08);
    color: var(--primary-dark);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--border);
}

.accordion-body {
    color: var(--text-muted);
    padding: 1.5rem;
    background: var(--bg-lighter);
    line-height: 1.8;
}

/* ============ CTA ============ */
.cta-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: white;
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    margin: 4rem;
}

.cta-section::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 212, 170, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.cta-section h2 {
    color: white;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.cta-section p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn-cta {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: var(--primary-dark);
    padding: 1.2rem 3rem;
    border-radius: 12px;
    font-weight: 800;
    border: none;
    font-size: 1.05rem;
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    transition: all 0.3s;
    box-shadow: 0 15px 40px rgba(0, 212, 170, 0.3);
}

.btn-cta:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 212, 170, 0.4);
    color: var(--primary-dark);
}

/* ============ CONTACT ============ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
}

.contact-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid var(--border);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border);
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.2), rgba(0, 212, 170, 0.05));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent-dark);
    flex-shrink: 0;
}

.contact-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin: 0;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-value {
    font-size: 1rem;
    color: var(--primary-dark);
    font-weight: 800;
    margin: 0.3rem 0 0;
}

.contact-value a {
    color: var(--accent-dark);
    text-decoration: none;
    transition: color 0.2s;
}

.contact-value a:hover {
    color: var(--primary-dark);
}

.form-label {
    font-weight: 700;
    color: var(--primary-dark);
    font-size: 0.9rem;
    margin-bottom: 0.7rem;
}

.form-control {
    padding: 1rem 1.2rem;
    border: 1.5px solid var(--border);
    border-radius: 12px;
    font-size: 0.95rem;
    transition: all 0.3s;
    background: white;
    color: var(--text-dark);
}

.form-control:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(0, 212, 170, 0.15);
    background: white;
}
.contact-card .success {
    color: #00a884;
}
.contact-card .error {
    color: #ff6b35;
}

/* ============ FOOTER ============ */
.footer {
    background: var(--primary-dark);
    color: rgba(255, 255, 255, 0.75);
    padding: 4rem 0 2rem;
}

.footer h5 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.footer a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: color 0.2s;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 0.6rem;
}

.footer a:hover {
    color: var(--accent);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    margin-top: 3rem;
    text-align: center;
    font-size: 0.85rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: inline-flex;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 0;
}

.social-links a:hover {
    background: var(--accent);
    color: var(--primary-dark);
    transform: translateY(-4px);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 992px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 100px 0 50px;
    }
    .section-title {
        font-size: 2rem;
    }
    section {
        padding: 60px 0;
    }
    .cta-section {
        margin: 2rem;
        padding: 4rem 2rem;
    }
    .cta-section h2 {
        font-size: 1.8rem;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .comparison-table {
        font-size: 0.8rem;
    }
    .comparison-table th,
    .comparison-table td {
        padding: 0.8rem;
    }
}
