/* ==========================================
   Roni Khanam - WordPress Design Expert
   Modern Tech-Forward Portfolio
   Color: Deep Teal + Gold
   ========================================== */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #0f172a;
    background: #fafbfc;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.15;
    color: #0f172a;
}

h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.6rem); }

p {
    font-size: 1.02rem;
    color: #475569;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s;
}

img {
    max-width: 100%;
    display: block;
}

/* CSS Variables */
:root {
    --teal-900: #0a4045;
    --teal-700: #0d6e6e;
    --teal-500: #14b8a6;
    --teal-50: #f0fdfa;
    --gold-500: #d4a72c;
    --gold-400: #e6b94d;
    --gold-100: #fef7e3;
    --slate-900: #0f172a;
    --slate-700: #334155;
    --slate-500: #64748b;
    --slate-200: #e2e8f0;
    --slate-100: #f1f5f9;
    --bg: #fafbfc;
    --white: #ffffff;
}

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

/* ============ NAVIGATION ============ */
.navbar {
    position: sticky;
    top: 0;
    background: rgba(250, 251, 252, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--slate-200);
    z-index: 100;
    padding: 16px 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 40px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 8px;
    list-style: none;
    align-items: center;
}

.nav-links a {
    font-size: 0.94rem;
    font-weight: 500;
    color: var(--slate-700);
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.2s;
}

.nav-links a:hover {
    color: var(--teal-700);
    background: var(--teal-50);
}

.nav-links a.active {
    color: var(--teal-700);
    background: var(--teal-50);
}

.nav-cta {
    background: var(--teal-900);
    color: var(--white) !important;
    padding: 10px 22px !important;
    border-radius: 8px;
    margin-left: 8px;
    font-weight: 600 !important;
}

.nav-cta:hover {
    background: var(--teal-700);
    color: var(--white) !important;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--slate-900);
}

/* ============ HERO ============ */
.hero {
    padding: 70px 0 90px;
    position: relative;
    overflow: hidden;
    background: 
        radial-gradient(circle at 20% 50%, rgba(20, 184, 166, 0.08) 0%, transparent 60%),
        radial-gradient(circle at 80% 20%, rgba(212, 167, 44, 0.06) 0%, transparent 50%),
        var(--bg);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: 
        linear-gradient(rgba(15, 23, 42, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 23, 42, 0.025) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    border: 1px solid var(--slate-200);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--slate-700);
    margin-bottom: 28px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
}

.hero-badge .dot {
    width: 8px;
    height: 8px;
    background: var(--teal-500);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

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

.hero h1 {
    margin-bottom: 24px;
    color: var(--slate-900);
}

.hero h1 .highlight {
    background: linear-gradient(135deg, var(--teal-700) 0%, var(--gold-500) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--slate-700);
    margin-bottom: 36px;
    max-width: 540px;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.25s ease;
    cursor: pointer;
    border: 2px solid transparent;
    font-family: inherit;
    white-space: nowrap;
}

.btn-primary {
    background: var(--teal-900);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--teal-700);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(13, 110, 110, 0.25);
}

.btn-secondary {
    background: var(--white);
    color: var(--slate-900);
    border-color: var(--slate-200);
}

.btn-secondary:hover {
    border-color: var(--teal-700);
    color: var(--teal-700);
    transform: translateY(-2px);
}

.btn-gold {
    background: var(--gold-500);
    color: var(--slate-900);
}

.btn-gold:hover {
    background: var(--gold-400);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(212, 167, 44, 0.3);
}

/* Hero Image */
.hero-image {
    position: relative;
}

.hero-image-frame {
    position: relative;
    max-width: 400px;
    margin-left: auto;
}

.hero-image-frame::before {
    content: '';
    position: absolute;
    top: -16px;
    left: -16px;
    right: 16px;
    bottom: 16px;
    border: 2px solid var(--gold-500);
    border-radius: 16px;
    z-index: 0;
}

.hero-image-frame img {
    width: 100%;
    border-radius: 16px;
    position: relative;
    z-index: 1;
    box-shadow: 0 20px 60px rgba(10, 64, 69, 0.2);
}

.hero-floating-card {
    position: absolute;
    background: var(--white);
    padding: 14px 18px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid var(--slate-100);
}

.hero-floating-card.card-1 {
    top: 30px;
    left: -20px;
    animation: float 3s ease-in-out infinite;
}

.hero-floating-card.card-2 {
    bottom: 60px;
    right: -10px;
    animation: float 3s ease-in-out infinite 1.5s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.hero-floating-card .icon-box {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--teal-50);
    color: var(--teal-700);
    font-size: 1.1rem;
}

.hero-floating-card.card-2 .icon-box {
    background: var(--gold-100);
    color: var(--gold-500);
}

.hero-floating-card span {
    font-size: 0.78rem;
    color: var(--slate-500);
    display: block;
    line-height: 1.2;
}

.hero-floating-card strong {
    font-size: 0.9rem;
    color: var(--slate-900);
    font-weight: 600;
}

/* Stats Strip */
.stats-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 40px 0;
    border-top: 1px solid var(--slate-200);
    margin-top: 30px;
    position: relative;
    z-index: 1;
}

.stat-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--teal-900);
    margin-bottom: 4px;
}

.stat-item h3 .plus {
    color: var(--gold-500);
}

.stat-item p {
    font-size: 0.85rem;
    color: var(--slate-500);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 500;
}

/* ============ SECTIONS ============ */
section {
    padding: 90px 0;
}

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

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--teal-700);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 18px;
    padding: 6px 14px;
    background: var(--teal-50);
    border-radius: 100px;
}

.section-header h2 {
    margin-bottom: 18px;
}

.section-header p {
    font-size: 1.08rem;
    color: var(--slate-700);
}

/* ============ ABOUT PREVIEW ============ */
.about-preview {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 70px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--teal-900) 0%, var(--teal-700) 100%);
    padding: 30px;
}

.about-image-card img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.about-image-deco {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    background: var(--gold-500);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.15;
}

.about-content h2 {
    margin-bottom: 24px;
}

.about-content p {
    margin-bottom: 18px;
    line-height: 1.75;
}

.about-features {
    list-style: none;
    margin-top: 28px;
}

.about-features li {
    padding: 12px 0 12px 36px;
    position: relative;
    color: var(--slate-700);
    font-size: 0.98rem;
}

.about-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 22px;
    height: 22px;
    background: var(--teal-50);
    border: 2px solid var(--teal-500);
    border-radius: 6px;
}

.about-features li::after {
    content: '✓';
    position: absolute;
    left: 5px;
    top: 12px;
    color: var(--teal-700);
    font-size: 0.85rem;
    font-weight: bold;
}

/* ============ SERVICES ============ */
.services-section {
    background: var(--slate-100);
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 24px;
}

.service-card {
    background: var(--white);
    padding: 36px 30px;
    border-radius: 16px;
    border: 1px solid var(--slate-200);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--teal-700), var(--gold-500));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: var(--teal-500);
    box-shadow: 0 20px 50px rgba(13, 110, 110, 0.1);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--teal-50), var(--gold-100));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 1.5rem;
    border: 1px solid var(--slate-100);
}

.service-card h3 {
    margin-bottom: 12px;
    font-size: 1.25rem;
    color: var(--slate-900);
}

.service-card p {
    font-size: 0.94rem;
    color: var(--slate-700);
    line-height: 1.65;
}

/* ============ PORTFOLIO ============ */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
}

.portfolio-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--slate-200);
    transition: all 0.3s ease;
}

.portfolio-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(13, 110, 110, 0.12);
    border-color: var(--teal-500);
}

.portfolio-thumb-img {
    height: 220px;
    overflow: hidden;
    background: var(--slate-100);
    position: relative;
}

.portfolio-thumb-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.5s ease;
}

.portfolio-card:hover .portfolio-thumb-img img {
    transform: scale(1.05);
}

.portfolio-info {
    padding: 26px;
}

.portfolio-info .category {
    display: inline-block;
    color: var(--teal-700);
    background: var(--teal-50);
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 0.78rem;
    font-weight: 600;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.portfolio-info h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--slate-900);
}

.portfolio-info p {
    font-size: 0.92rem;
    color: var(--slate-700);
}

/* ============ CTA SECTION ============ */
.cta-section {
    background: linear-gradient(135deg, var(--teal-900) 0%, var(--teal-700) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 167, 44, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-inner {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-inner h2 {
    color: var(--white);
    margin-bottom: 18px;
}

.cta-inner h2 .gold {
    color: var(--gold-400);
}

.cta-inner p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 34px;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.05rem;
}

.cta-section .btn-primary {
    background: var(--gold-500);
    color: var(--slate-900);
}

.cta-section .btn-primary:hover {
    background: var(--gold-400);
}

/* ============ CONTACT PAGE ============ */
.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 50px;
    align-items: start;
}

.contact-info {
    background: linear-gradient(135deg, var(--teal-900) 0%, var(--teal-700) 100%);
    color: var(--white);
    padding: 44px 38px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.contact-info::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(212, 167, 44, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.contact-info h3 {
    color: var(--white);
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

.contact-info > p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 28px;
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    position: relative;
    z-index: 1;
}

.contact-detail:last-child {
    border-bottom: none;
}

.contact-icon {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-detail-text small {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 4px;
    font-weight: 500;
}

.contact-detail-text p {
    color: var(--white);
    font-weight: 500;
    font-size: 0.98rem;
    margin: 0;
}

.contact-form {
    background: var(--white);
    padding: 44px 38px;
    border-radius: 20px;
    border: 1px solid var(--slate-200);
}

.contact-form h3 {
    margin-bottom: 8px;
}

.contact-form > p {
    color: var(--slate-500);
    margin-bottom: 28px;
    font-size: 0.95rem;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--slate-900);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid var(--slate-200);
    border-radius: 10px;
    font-family: inherit;
    font-size: 0.95rem;
    background: var(--bg);
    transition: border-color 0.2s, box-shadow 0.2s;
    color: var(--slate-900);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--teal-500);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.1);
}

.form-group textarea {
    min-height: 130px;
    resize: vertical;
}

/* ============ ABOUT PAGE ============ */
.about-page-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 60px;
    align-items: start;
}

.about-page-image {
    position: sticky;
    top: 100px;
}

.about-page-image-wrap {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--teal-900), var(--teal-700));
    padding: 24px;
}

.about-page-image-wrap img {
    width: 100%;
    border-radius: 12px;
}

.about-info-grid {
    margin-top: 20px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.info-card {
    background: var(--white);
    padding: 18px 22px;
    border-radius: 12px;
    border: 1px solid var(--slate-200);
    display: flex;
    align-items: center;
    gap: 14px;
}

.info-card-icon {
    width: 38px;
    height: 38px;
    background: var(--teal-50);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.info-card-text {
    flex: 1;
    min-width: 0;
}

.info-card-text small {
    display: block;
    color: var(--slate-500);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 500;
    margin-bottom: 2px;
}

.info-card-text p {
    color: var(--slate-900);
    font-weight: 500;
    margin: 0;
    font-size: 0.92rem;
    word-break: break-word;
}

.about-bio h2 {
    margin-bottom: 24px;
}

.about-bio p {
    margin-bottom: 18px;
    line-height: 1.8;
    color: var(--slate-700);
}

.about-bio strong {
    color: var(--slate-900);
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px;
    margin-top: 24px;
}

.skill-pill {
    background: var(--white);
    color: var(--slate-700);
    padding: 12px 18px;
    border-radius: 10px;
    font-size: 0.88rem;
    font-weight: 500;
    text-align: center;
    border: 1.5px solid var(--slate-200);
    transition: all 0.2s;
}

.skill-pill:hover {
    border-color: var(--teal-500);
    color: var(--teal-700);
    transform: translateY(-2px);
}

/* ============ FOOTER ============ */
.footer {
    background: var(--slate-900);
    color: var(--slate-200);
    padding: 70px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.3fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-brand img {
    height: 44px;
    width: auto;
    margin-bottom: 18px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-section h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 0.92rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 12px;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.93rem;
    transition: color 0.2s;
}

.footer-section a:hover {
    color: var(--gold-400);
}

.footer-contact-item {
    margin-bottom: 14px;
    font-size: 0.93rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

.footer-contact-item strong {
    color: var(--white);
    display: block;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 4px;
    font-weight: 500;
    color: var(--gold-400);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 28px;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.86rem;
}

.footer-bottom strong {
    color: var(--white);
}

/* ============ PAGE HEADER ============ */
.page-header {
    background: 
        radial-gradient(circle at 20% 50%, rgba(20, 184, 166, 0.08) 0%, transparent 60%),
        radial-gradient(circle at 80% 20%, rgba(212, 167, 44, 0.06) 0%, transparent 50%),
        var(--bg);
    padding: 70px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--slate-200);
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: 
        linear-gradient(rgba(15, 23, 42, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 23, 42, 0.025) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}

.page-header > .container {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    margin-bottom: 14px;
}

.page-header h1 .gold {
    background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-header p {
    max-width: 600px;
    margin: 0 auto;
    color: var(--slate-700);
    font-size: 1.05rem;
}

.breadcrumb {
    color: var(--teal-700);
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

/* ============ ANIMATIONS ============ */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-badge, .hero h1, .hero-subtitle, .hero-cta {
    animation: fadeInUp 0.6s ease forwards;
}

.hero h1 { animation-delay: 0.1s; }
.hero-subtitle { animation-delay: 0.2s; }
.hero-cta { animation-delay: 0.3s; }

/* ============ RESPONSIVE ============ */
@media (max-width: 968px) {
    .hero-grid,
    .about-grid,
    .contact-grid,
    .about-page-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about-page-image {
        position: relative;
        top: 0;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .hero-image-frame {
        margin: 0 auto;
    }
    
    .stats-strip {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-floating-card.card-1 {
        left: 0;
    }
    
    .hero-floating-card.card-2 {
        right: 0;
    }
}

@media (max-width: 640px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 16px;
        gap: 4px;
        border-bottom: 1px solid var(--slate-200);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links a {
        width: 100%;
        text-align: center;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .hero {
        padding: 50px 0 70px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .stats-strip {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info,
    .contact-form {
        padding: 30px 22px;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-floating-card {
        display: none;
    }
}
