/* ==============================
   RESET & ROOT
   ============================== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --black:    #08080f;
    --black-2:  #0d0d18;
    --black-3:  #121220;
    --card:     #111120;
    --card-2:   #161628;

    --red:      #dc2626;
    --red-d:    #991b1b;
    --red-l:    #f87171;

    --violet:   #4f46e5;
    --violet-d: #3730a3;
    --violet-l: #818cf8;

    --text:     #f1f5f9;
    --muted:    #64748b;
    --muted-l:  #94a3b8;

    --border:       rgba(255,255,255,0.07);
    --border-red:   rgba(220,38,38,0.25);
    --border-vio:   rgba(79,70,229,0.3);
}

html { scroll-behavior: smooth; }

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--black);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3 { font-family: 'Playfair Display', Georgia, serif; }

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

/* ==============================
   NAVBAR
   ============================== */
.navbar {
    position: fixed; top: 0; width: 100%; z-index: 1000;
    background: rgba(8,8,15,0.92);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 1rem 0;
}
.nav-container {
    max-width: 1100px; margin: 0 auto; padding: 0 24px;
    display: flex; justify-content: space-between; align-items: center;
}
.nav-brand a {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem; font-weight: 700; letter-spacing: 0.5px;
    text-decoration: none; color: var(--text);
    background: linear-gradient(135deg, var(--text) 0%, var(--violet-l) 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.nav-menu { display: flex; list-style: none; gap: 2rem; align-items: center; }
.nav-menu a {
    text-decoration: none; color: var(--muted-l);
    font-size: 0.88rem; font-weight: 500; transition: color 0.2s;
    letter-spacing: 0.2px;
}
.nav-menu a:hover { color: var(--text); }

.cta-button {
    background: var(--red) !important;
    color: #fff !important;
    padding: 0.55rem 1.2rem !important;
    border-radius: 5px !important;
    font-weight: 600 !important;
    font-size: 0.85rem !important;
    transition: background 0.2s, transform 0.2s !important;
}
.cta-button:hover { background: var(--red-d) !important; transform: translateY(-1px) !important; color: #fff !important; }

.hamburger { display: none; flex-direction: column; cursor: pointer; gap: 5px; }
.hamburger span { width: 22px; height: 2px; background: var(--muted-l); border-radius: 2px; transition: 0.3s; }

/* ==============================
   SHARED BUTTONS
   ============================== */
.btn-primary {
    display: inline-block;
    background: var(--red);
    color: #fff;
    padding: 0.82rem 1.9rem;
    border-radius: 5px;
    font-weight: 600; font-size: 0.92rem; text-decoration: none;
    transition: background 0.2s, transform 0.2s;
    letter-spacing: 0.1px;
    font-family: 'DM Sans', sans-serif;
}
.btn-primary:hover { background: var(--red-d); transform: translateY(-2px); }

/* ==============================
   HERO
   ============================== */
.hero {
    padding-top: 80px;
    min-height: 100vh;
    display: flex; align-items: center;
    max-width: 1100px; margin: 0 auto;
    padding-left: 24px; padding-right: 24px;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    width: 100%;
    padding: 80px 0;
}

.hero-content { max-width: 520px; }

.status-badge {
    display: inline-block;
    font-size: 0.73rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
    color: var(--red-l);
    background: rgba(220,38,38,0.1);
    border: 1px solid var(--border-red);
    padding: 0.32rem 0.9rem; border-radius: 4px; margin-bottom: 2rem;
    font-family: 'DM Sans', sans-serif;
}

.hero h1 {
    font-size: 3.6rem; font-weight: 900;
    line-height: 1.06; letter-spacing: -1.5px;
    color: var(--text); margin-bottom: 1.4rem;
}
.grad-red {
    background: linear-gradient(135deg, var(--red-l) 0%, var(--red) 60%, var(--violet-l) 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1rem; color: var(--muted-l); line-height: 1.85;
    margin-bottom: 2rem; font-weight: 400;
}
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; margin-bottom: 2rem; }
.hero-secondary {
    color: var(--muted-l); text-decoration: none;
    font-size: 0.88rem; font-weight: 500; transition: color 0.2s;
}
.hero-secondary:hover { color: var(--text); }

.hero-tags {
    display: flex; flex-wrap: wrap; gap: 0.5rem;
}
.hero-tags span {
    font-size: 0.72rem; font-weight: 500;
    color: var(--muted);
    border: 1px solid var(--border);
    padding: 0.25rem 0.7rem; border-radius: 4px;
    font-family: 'DM Sans', sans-serif; letter-spacing: 0.2px;
}

/* Hero photo */
.hero-photo-wrap {
    position: relative;
    display: flex; justify-content: center; align-items: flex-end;
}
.hero-photo-glow {
    position: absolute;
    width: 380px; height: 380px;
    background: radial-gradient(ellipse, rgba(220,38,38,0.18) 0%, rgba(79,70,229,0.12) 50%, transparent 70%);
    border-radius: 50%;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none; z-index: 0;
    animation: glow-pulse 4s ease-in-out infinite;
}
@keyframes glow-pulse {
    0%,100% { opacity: 0.7; transform: translate(-50%,-50%) scale(1); }
    50%      { opacity: 1;   transform: translate(-50%,-50%) scale(1.06); }
}
.hero-photo {
    position: relative; z-index: 1;
    width: 100%; max-width: 420px;
    border-radius: 16px;
    object-fit: cover;
    display: block;
    border: 1px solid var(--border);
    box-shadow:
        0 0 0 1px rgba(220,38,38,0.15),
        0 40px 80px rgba(0,0,0,0.6),
        0 0 60px rgba(79,70,229,0.1);
}
.hero-photo-badge {
    position: absolute; bottom: 20px; left: -18px; z-index: 2;
    background: var(--card-2);
    border: 1px solid var(--border);
    border-radius: 30px;
    padding: 0.5rem 1rem;
    font-size: 0.78rem; font-weight: 600; color: var(--text);
    display: flex; align-items: center; gap: 0.55rem;
    font-family: 'DM Sans', sans-serif;
    box-shadow: 0 8px 30px rgba(0,0,0,0.5);
    backdrop-filter: blur(10px);
}
.badge-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: #4ade80;
    box-shadow: 0 0 8px #4ade80;
    animation: dot-blink 2s ease-in-out infinite;
    flex-shrink: 0;
}
@keyframes dot-blink {
    0%,100% { opacity: 1; }
    50%      { opacity: 0.4; }
}

/* ==============================
   HOW IT WORKS
   ============================== */
.how-section {
    padding: 110px 0;
    border-top: 1px solid var(--border);
    background: var(--black-2);
}
.how-section h2 {
    font-size: 2.6rem; font-weight: 800;
    letter-spacing: -0.5px; margin-bottom: 0.6rem;
}
.section-sub {
    font-size: 0.95rem; color: var(--muted-l);
    margin-bottom: 3rem; max-width: 480px; line-height: 1.8;
}
.how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.how-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 10px; padding: 2rem;
    transition: border-color 0.3s, transform 0.3s;
}
.how-card:hover { border-color: var(--border-red); transform: translateY(-4px); }
.how-icon { font-size: 1.7rem; margin-bottom: 1rem; display: block; }
.how-card h3 {
    font-size: 1.05rem; font-weight: 700; margin-bottom: 0.75rem;
    color: var(--text); font-family: 'Playfair Display', serif;
}
.how-card p { font-size: 0.87rem; color: var(--muted-l); line-height: 1.8; margin-bottom: 1.2rem; }
.how-check {
    font-size: 0.76rem; font-weight: 600; color: var(--red-l);
    background: rgba(220,38,38,0.08);
    border: 1px solid var(--border-red);
    padding: 0.38rem 0.8rem; border-radius: 4px; display: inline-block;
    font-family: 'DM Sans', sans-serif;
}

/* ==============================
   RECENT WORK
   ============================== */
.work-section {
    padding: 110px 0;
    border-top: 1px solid var(--border);
    background: var(--black);
}
.work-section h2 { font-size: 2.6rem; font-weight: 800; letter-spacing: -0.5px; margin-bottom: 0.6rem; }
.work-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.work-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 10px; overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}
.work-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    border-color: var(--border-vio);
}
.work-preview { height: 160px; display: flex; align-items: flex-end; }
.work-preview-inner { padding: 1.2rem; width: 100%; }
.wp-tag {
    font-size: 0.58rem; font-weight: 700; letter-spacing: 2px;
    color: var(--red-l);
    background: rgba(220,38,38,0.15);
    border: 1px solid var(--border-red);
    padding: 0.15rem 0.5rem; border-radius: 3px;
    display: inline-block; margin-bottom: 0.5rem;
    font-family: 'DM Sans', sans-serif;
}
.wp-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem; font-weight: 800; color: white; line-height: 1.2;
}
.wp-title span {
    background: linear-gradient(90deg, var(--violet-l), var(--red-l));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.work-info { padding: 1.4rem; }
.work-info h4 {
    font-family: 'Playfair Display', serif;
    font-size: 0.97rem; font-weight: 700; margin-bottom: 0.5rem; color: var(--text);
}
.work-info p { font-size: 0.83rem; color: var(--muted-l); line-height: 1.75; margin-bottom: 1rem; }
.work-tags { display: flex; gap: 0.45rem; flex-wrap: wrap; }
.work-tags span {
    font-size: 0.7rem; font-weight: 500;
    color: var(--muted-l);
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border);
    padding: 0.22rem 0.6rem; border-radius: 4px;
}

/* ==============================
   TRUST SECTION
   ============================== */
.trust-section {
    padding: 110px 0;
    border-top: 1px solid var(--border);
    background: var(--black-2);
}
.trust-section h2 { font-size: 2.6rem; font-weight: 800; letter-spacing: -0.5px; margin-bottom: 0.6rem; }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.trust-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 10px; padding: 1.8rem;
    transition: border-color 0.3s, transform 0.3s;
}
.trust-card:hover { border-color: var(--border-vio); transform: translateY(-3px); }
.trust-icon { font-size: 1.4rem; margin-bottom: 0.8rem; display: block; }
.trust-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 0.97rem; font-weight: 700; margin-bottom: 0.5rem; color: var(--text);
}
.trust-card p { font-size: 0.84rem; color: var(--muted-l); line-height: 1.8; }

/* ==============================
   PRICING
   ============================== */
.pricing-section {
    padding: 110px 0;
    border-top: 1px solid var(--border);
    background: var(--black);
}
.pricing-box {
    max-width: 480px; margin: 0 auto;
    background: var(--card);
    border: 1px solid var(--border-vio);
    border-radius: 12px; padding: 3rem 2.5rem;
    text-align: center;
    box-shadow: 0 0 80px rgba(79,70,229,0.08);
}
.pricing-label {
    font-size: 0.73rem; font-weight: 700; letter-spacing: 3px;
    text-transform: uppercase; color: var(--muted);
    margin-bottom: 0.6rem; font-family: 'DM Sans', sans-serif;
}
.pricing-amount {
    font-family: 'Playfair Display', serif;
    font-size: 5.5rem; font-weight: 900; letter-spacing: -3px;
    background: linear-gradient(135deg, var(--red-l) 0%, var(--violet-l) 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1; margin-bottom: 0.5rem;
}
.pricing-note { font-size: 0.85rem; color: var(--muted-l); margin-bottom: 2rem; }
.pricing-list { list-style: none; text-align: left; margin-bottom: 2rem; }
.pricing-list li {
    font-size: 0.88rem; color: var(--muted-l);
    padding: 0.65rem 0;
    border-bottom: 1px solid var(--border);
    display: flex; align-items: center; gap: 0.8rem;
}
.pricing-list li:last-child { border-bottom: none; }
.check { color: var(--red); font-weight: 700; flex-shrink: 0; }
.pricing-cta { display: block; text-align: center; }

/* ==============================
   ABOUT SECTION
   ============================== */
.about-section {
    padding: 110px 0;
    border-top: 1px solid var(--border);
    background: var(--black-2);
}
.about-split {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 4rem; align-items: start;
}
.section-eyebrow {
    font-size: 0.73rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
    color: var(--red-l);
    background: rgba(220,38,38,0.08);
    border: 1px solid var(--border-red);
    padding: 0.32rem 0.9rem; border-radius: 4px;
    display: inline-block; margin-bottom: 1.4rem;
    font-family: 'DM Sans', sans-serif;
}
.about-left h2 {
    font-size: 2.8rem; font-weight: 900; letter-spacing: -1px;
    line-height: 1.1; margin-bottom: 1.5rem;
}
.about-left h2 em {
    font-style: italic;
    background: linear-gradient(135deg, var(--violet-l), var(--red-l));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.about-left p {
    font-size: 0.92rem; color: var(--muted-l); line-height: 1.9;
    margin-bottom: 1.2rem;
}
.about-left p em { color: var(--text); font-style: normal; font-weight: 600; }

.tools-label {
    font-size: 0.72rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
    color: var(--muted); margin-bottom: 0.9rem; margin-top: 1.8rem;
    font-family: 'DM Sans', sans-serif;
}
.tools-grid { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.tool-chip {
    font-size: 0.78rem; font-weight: 600;
    color: var(--violet-l);
    background: rgba(79,70,229,0.1);
    border: 1px solid var(--border-vio);
    padding: 0.35rem 0.85rem; border-radius: 5px;
    font-family: 'DM Sans', sans-serif; letter-spacing: 0.2px;
}

/* About card */
.about-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px; padding: 2rem;
    margin-bottom: 1.5rem;
}
.about-card-header {
    display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem;
}
.about-avatar-photo {
    width: 52px; height: 52px; border-radius: 50%;
    object-fit: cover; object-position: center top;
    border: 2px solid var(--border-red);
    flex-shrink: 0;
}
.about-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem; font-weight: 700; color: var(--text); margin-bottom: 0.2rem;
}
.about-role { font-size: 0.78rem; color: var(--muted-l); font-weight: 500; }

.about-divider { height: 1px; background: var(--border); margin-bottom: 1.5rem; }

.about-details { display: flex; flex-direction: column; gap: 1.1rem; margin-bottom: 1.8rem; }
.about-detail-row { display: flex; align-items: flex-start; gap: 0.9rem; }
.detail-icon { font-size: 1.05rem; flex-shrink: 0; margin-top: 1px; }
.detail-label {
    font-size: 0.7rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
    color: var(--muted); margin-bottom: 0.15rem; font-family: 'DM Sans', sans-serif;
}
.detail-value { font-size: 0.88rem; color: var(--muted-l); font-weight: 500; }
.detail-link {
    color: var(--violet-l); text-decoration: none; font-size: 0.88rem; font-weight: 500;
    transition: color 0.2s;
}
.detail-link:hover { color: var(--text); }
.avail-green { color: #4ade80 !important; font-weight: 600 !important; }

.about-cta-btn { display: block; text-align: center; }

/* Expertise card */
.expertise-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px; padding: 1.8rem;
}
.exp-title {
    font-size: 0.72rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
    color: var(--muted); margin-bottom: 1.2rem; font-family: 'DM Sans', sans-serif;
}
.exp-list { display: flex; flex-direction: column; gap: 0.9rem; }
.exp-row { display: flex; align-items: center; gap: 0.8rem; }
.exp-row span { font-size: 0.82rem; color: var(--muted-l); width: 160px; flex-shrink: 0; }
.exp-bar {
    flex: 1; height: 4px;
    background: rgba(255,255,255,0.06);
    border-radius: 4px; overflow: hidden;
}
.exp-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--red), var(--violet));
    border-radius: 4px;
}

/* ==============================
   FAQ
   ============================== */
.faq-section {
    padding: 110px 0;
    border-top: 1px solid var(--border);
    background: var(--black);
}
.faq-section h2 { font-size: 2.6rem; font-weight: 800; letter-spacing: -0.5px; margin-bottom: 2.5rem; }
.faq-list { max-width: 720px; }
.faq-item { border-bottom: 1px solid var(--border); padding: 1.4rem 0; }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q {
    font-family: 'Playfair Display', serif;
    font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 0.6rem;
}
.faq-a { font-size: 0.88rem; color: var(--muted-l); line-height: 1.85; }

/* ==============================
   CONTACT
   ============================== */
.contact-section {
    border-top: 1px solid var(--border);
    background: var(--black-2);
}
.contact-split {
    max-width: 1100px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 4rem; padding: 110px 24px;
    align-items: start;
}
.contact-left h2 {
    font-size: 2.5rem; font-weight: 900; letter-spacing: -0.8px; margin-bottom: 1rem;
}
.contact-left p { font-size: 0.92rem; color: var(--muted-l); line-height: 1.85; margin-bottom: 1.8rem; }

.contact-info-list { display: flex; flex-direction: column; gap: 0.85rem; }
.contact-info-row {
    display: flex; align-items: center; gap: 0.75rem;
    font-size: 0.88rem; color: var(--muted-l);
    text-decoration: none; transition: color 0.2s;
}
.contact-info-row:hover { color: var(--text); }
.contact-info-row.plain { cursor: default; }
.contact-info-row span { font-size: 1rem; flex-shrink: 0; }

.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label {
    font-size: 0.76rem; font-weight: 600; color: var(--muted-l);
    letter-spacing: 0.5px; text-transform: uppercase;
    font-family: 'DM Sans', sans-serif;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 0.78rem 0.95rem;
    color: var(--text); font-family: 'DM Sans', sans-serif; font-size: 0.88rem;
    transition: border-color 0.2s, box-shadow 0.2s;
    -webkit-appearance: none; appearance: none;
}
.contact-form select option { background: var(--card-2); color: var(--text); }
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--muted); }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(220,38,38,0.12);
}
.submit-btn {
    background: var(--red); color: #fff;
    border: none; border-radius: 6px;
    padding: 0.88rem 1.5rem;
    font-size: 0.92rem; font-weight: 600;
    cursor: pointer; transition: background 0.2s, transform 0.2s;
    font-family: 'DM Sans', sans-serif;
    margin-top: 0.3rem; letter-spacing: 0.1px;
}
.submit-btn:hover { background: var(--red-d); transform: translateY(-2px); }

/* ==============================
   FOOTER
   ============================== */
.footer {
    background: var(--black);
    border-top: 1px solid var(--border);
    padding: 4rem 0 2rem;
}
.footer-content {
    max-width: 1100px; margin: 0 auto; padding: 0 24px;
    display: grid; grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem; margin-bottom: 2.5rem;
}
.footer-section h4 {
    font-family: 'Playfair Display', serif;
    font-size: 0.92rem; font-weight: 700; color: var(--text); margin-bottom: 1rem;
}
.footer-section p { font-size: 0.84rem; color: var(--muted); line-height: 1.75; max-width: 260px; }
.footer-section ul { list-style: none; }
.footer-section ul li { margin-bottom: 0.55rem; }
.footer-section a {
    color: var(--muted); text-decoration: none; font-size: 0.84rem; transition: color 0.2s;
}
.footer-section a:hover { color: var(--text); }
.footer-bottom {
    max-width: 1100px; margin: 0 auto; padding: 1.5rem 24px 0;
    border-top: 1px solid var(--border);
    font-size: 0.76rem; color: rgba(255,255,255,0.2); text-align: center;
}

/* ==============================
   RESPONSIVE
   ============================== */
@media (max-width: 960px) {
    .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
    .hero-photo-wrap { order: -1; }
    .hero-photo { max-width: 340px; margin: 0 auto; }
    .hero-photo-badge { left: 50%; transform: translateX(-50%); bottom: -16px; white-space: nowrap; }
    .hero h1 { font-size: 3rem; }
    .about-split { grid-template-columns: 1fr; gap: 3rem; }
    .how-grid, .work-grid, .trust-grid { grid-template-columns: 1fr 1fr; }
    .contact-split { grid-template-columns: 1fr; gap: 2.5rem; }
    .footer-content { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
    .hamburger { display: flex; }
    .nav-menu {
        position: fixed; left: -100%; top: 62px;
        flex-direction: column; background: var(--black-2);
        border-bottom: 1px solid var(--border);
        width: 100%; padding: 1.5rem 0; gap: 0; transition: left 0.3s;
    }
    .nav-menu.active { left: 0; }
    .nav-menu li { padding: 0.8rem 0; text-align: center; }
    .hero { padding-left: 20px; padding-right: 20px; min-height: auto; }
    .hero-inner { padding: 100px 0 60px; }
    .hero h1 { font-size: 2.4rem; letter-spacing: -1px; }
    .hero-photo { max-width: 280px; }
    .how-grid, .work-grid, .trust-grid { grid-template-columns: 1fr; }
    .about-left h2 { font-size: 2.2rem; }
    .exp-row span { width: 130px; font-size: 0.78rem; }
    .footer-content { grid-template-columns: 1fr; gap: 2rem; }
    .contact-split { padding: 70px 20px; }
    .how-section, .work-section, .trust-section,
    .pricing-section, .about-section, .faq-section { padding: 75px 20px; }
}

/* ==============================
   SCROLL REVEAL
   ============================== */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(18px); }
    to   { opacity: 1; transform: translateY(0); }
}
.how-card, .work-card, .trust-card {
    animation: fadeUp 0.55s ease-out both;
}
.how-card:nth-child(1)   { animation-delay: 0.05s; }
.how-card:nth-child(2)   { animation-delay: 0.13s; }
.how-card:nth-child(3)   { animation-delay: 0.21s; }
.work-card:nth-child(1)  { animation-delay: 0.05s; }
.work-card:nth-child(2)  { animation-delay: 0.13s; }
.work-card:nth-child(3)  { animation-delay: 0.21s; }
.trust-card:nth-child(1) { animation-delay: 0.04s; }
.trust-card:nth-child(2) { animation-delay: 0.09s; }
.trust-card:nth-child(3) { animation-delay: 0.14s; }
.trust-card:nth-child(4) { animation-delay: 0.19s; }
.trust-card:nth-child(5) { animation-delay: 0.24s; }
.trust-card:nth-child(6) { animation-delay: 0.29s; }
