/* =========================================================================
   GD.CSS — Graphic Designing Page
   Colour scheme: inherits home.css (--color-primary #2563eb / white / dark)
   ========================================================================= */

/* ── HERO ──────────────────────────────────────────────────────────────── */
.gd-hero {
    position: relative;
    padding: 128px 0 0;
    overflow: hidden;
    background: var(--color-bg-dark, #f8f9fc);
}

.gd-hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

/* Blobs */
.gd-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
}
.gd-blob-1 {
    width: 520px; height: 520px;
    background: radial-gradient(circle, rgba(37,99,235,0.18) 0%, transparent 70%);
    top: -120px; left: -140px;
    animation: gdBlobA 8s ease-in-out infinite alternate;
}
.gd-blob-2 {
    width: 420px; height: 420px;
    background: radial-gradient(circle, rgba(29,78,216,0.13) 0%, transparent 70%);
    top: 60px; right: -100px;
    animation: gdBlobB 9s ease-in-out infinite alternate;
}
.gd-blob-3 {
    width: 340px; height: 340px;
    background: radial-gradient(circle, rgba(59,130,246,0.10) 0%, transparent 70%);
    bottom: 0; left: 42%;
    animation: gdBlobC 7s ease-in-out infinite alternate;
}
@keyframes gdBlobA { 0%{transform:translate(0,0)} 100%{transform:translate(60px,40px)} }
@keyframes gdBlobB { 0%{transform:translate(0,0)} 100%{transform:translate(-50px,60px)} }
@keyframes gdBlobC { 0%{transform:translate(0,0)} 100%{transform:translate(40px,-50px)} }

/* Particle dots */
.gd-hero-particles { position:absolute; inset:0; pointer-events:none; }
.gd-particle {
    position: absolute;
    border-radius: 50%;
    background: var(--color-primary, #2563eb);
    animation: gdParticleFly linear infinite;
}
@keyframes gdParticleFly {
    0%   { transform: translateY(0) scale(1);   opacity: 0; }
    20%  { opacity: 1; }
    80%  { opacity: 0.6; }
    100% { transform: translateY(-120px) scale(0.4); opacity: 0; }
}

/* ── Hero content ── */
.gd-hero-inner {
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 2;
}
.gd-hero-content {
    text-align: center;
    max-width: 820px;
    width: 100%;
}

/* Badge */
.gd-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.9);
    border: 1px solid rgba(37,99,235,0.18);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #374151;
    margin-bottom: 28px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    opacity: 0;
    animation: gdFadeUp 0.8s cubic-bezier(0.16,1,0.3,1) 0.1s forwards;
}
.gd-badge-pulse {
    width: 8px; height: 8px;
    background: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(16,185,129,0.4);
    animation: gdPulse 2s infinite;
}
@keyframes gdPulse {
    0%   { box-shadow: 0 0 0 0 rgba(16,185,129,0.4); }
    70%  { box-shadow: 0 0 0 8px rgba(16,185,129,0); }
    100% { box-shadow: 0 0 0 0 rgba(16,185,129,0); }
}

/* Title */
.gd-hero-title {
    font-size: clamp(38px, 5vw, 68px);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -0.035em;
    color: var(--color-text-pure, #0f1117);
    margin-bottom: 22px;
}
.gd-title-line-1 {
    display: block;
    opacity: 0;
    animation: gdFadeUp 0.9s cubic-bezier(0.16,1,0.3,1) 0.2s forwards;
    margin-bottom: 4px;
}
.gd-title-line-2 {
    display: block;
    opacity: 0;
    animation: gdFadeUp 0.9s cubic-bezier(0.16,1,0.3,1) 0.32s forwards;
    margin-bottom: 4px;
}
.gd-title-line-3 {
    display: block;
    opacity: 0;
    animation: gdFadeUp 0.9s cubic-bezier(0.16,1,0.3,1) 0.44s forwards;
}

/* Gradient text */
.gd-gradient-text {
    background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 40%, #3b82f6 70%, #6366f1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Description */
.gd-hero-desc {
    font-size: 17px;
    color: var(--color-text-silver, #6b7280);
    line-height: 1.65;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    animation: gdFadeUp 0.9s cubic-bezier(0.16,1,0.3,1) 0.56s forwards;
}

/* CTA Buttons */
.gd-hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 40px;
    justify-content: center;
    opacity: 0;
    animation: gdFadeUp 0.9s cubic-bezier(0.16,1,0.3,1) 0.68s forwards;
}

.gd-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--color-primary, #2563eb);
    color: #fff;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.16,1,0.3,1);
    box-shadow: 0 4px 20px rgba(37,99,235,0.35);
}
.gd-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(37,99,235,0.5);
    background: #1d4ed8;
}

.gd-wa-btn { position: relative; }
.gd-wa-btn::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 14px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s;
}
.gd-wa-btn:hover::after { opacity: 0.25; }

.gd-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--color-primary, #2563eb);
    padding: 14px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    border: 1.5px solid rgba(37,99,235,0.28);
    transition: all 0.3s ease;
}
.gd-btn-ghost:hover {
    background: rgba(37,99,235,0.07);
    border-color: rgba(37,99,235,0.55);
    transform: translateY(-2px);
}

/* Stats */
.gd-hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    padding: 20px 0 48px;
    border-top: 1px solid var(--color-border-glass, rgba(0,0,0,0.08));
    flex-wrap: wrap;
    opacity: 0;
    animation: gdFadeUp 0.9s cubic-bezier(0.16,1,0.3,1) 0.8s forwards;
}
.gd-stat         { display: flex; flex-direction: column; align-items: center; }
.gd-stat-num {
    font-size: 22px;
    font-weight: 900;
    color: var(--color-primary, #2563eb);
    letter-spacing: -0.02em;
    line-height: 1.1;
}
.gd-stat-label   { font-size: 12px; color: var(--color-text-silver,#6b7280); font-weight: 500; margin-top: 2px; }
.gd-stat-sep     { width: 1px; height: 36px; background: var(--color-border-glass, rgba(0,0,0,0.1)); }

/* Tools strip */
.gd-tools-strip {
    background: #fff;
    border-top: 1px solid rgba(0,0,0,0.06);
    padding: 18px 0;
    position: relative;
    z-index: 2;
}
.gd-tools-inner {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
}
.gd-tools-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: #9ca3af;
    white-space: nowrap;
}
.gd-tool-logos { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.gd-tool-logo {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-text-silver, #6b7280);
    transition: color 0.2s, transform 0.2s;
}
.gd-tool-logo:hover { color: var(--color-text-pure, #0f1117); transform: translateY(-1px); }

/* ── SERVICES SECTION ───────────────────────────────────────────────────── */
.gd-services-section {
    padding: 100px 0;
    background: #fff;
}

.gd-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 0;
}

.gd-service-card {
    background: var(--color-bg-dark, #f8f9fc);
    border: 1px solid var(--color-border-glass, rgba(0,0,0,0.07));
    border-radius: 18px;
    padding: 32px 28px;
    transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
    opacity: 0;
    transform: translateY(20px);
}
.gd-service-card.visible {
    opacity: 1;
    transform: translateY(0);
}
.gd-service-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 20px 52px rgba(37,99,235,0.1);
    border-color: rgba(37,99,235,0.15);
    background: #fff;
}
.gd-service-icon {
    width: 54px; height: 54px;
    border-radius: 14px;
    background: var(--ib);
    color: var(--ic);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: transform 0.3s;
}
.gd-service-card:hover .gd-service-icon { transform: scale(1.08) rotate(-3deg); }
.gd-service-card h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--color-text-pure, #0f1117);
    margin-bottom: 10px;
}
.gd-service-card p {
    font-size: 14px;
    color: var(--color-text-silver, #6b7280);
    line-height: 1.65;
    margin-bottom: 18px;
}
.gd-service-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 100px;
    border: 1px solid;
}

/* Bundle Card */
.gd-bundle-card {
    position: relative;
    margin-top: 48px;
    border-radius: 22px;
    overflow: hidden;
    background: linear-gradient(135deg,#0f1117 0%,#1e1b4b 50%,#0f1117 100%);
    border: 1px solid rgba(37,99,235,0.3);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.16,1,0.3,1);
}
.gd-bundle-card.visible { opacity:1; transform:translateY(0); }

.gd-bundle-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 60% 50%, rgba(37,99,235,0.22) 0%, transparent 60%);
    pointer-events: none;
}
.gd-bundle-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 52px;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
}
.gd-bundle-left   { flex: 1; min-width: 260px; }
.gd-bundle-badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fbbf24;
    background: rgba(251,191,36,0.12);
    border: 1px solid rgba(251,191,36,0.25);
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 16px;
}
.gd-bundle-title {
    font-size: clamp(22px,2.5vw,30px);
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}
.gd-bundle-desc {
    font-size: 15px;
    color: rgba(255,255,255,0.6);
    line-height: 1.65;
    margin-bottom: 20px;
}
.gd-bundle-includes { display: flex; gap: 8px; flex-wrap: wrap; }
.gd-bundle-includes span {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    padding: 4px 14px;
    border-radius: 100px;
}
.gd-bundle-right { text-align: center; flex-shrink: 0; }
.gd-bundle-price {
    font-size: 15px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 24px;
    line-height: 1.5;
}
.gd-bundle-price strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: rgba(255,255,255,0.7);
    margin-top: 4px;
}
.gd-bundle-price strong span {
    display: block;
    font-size: 42px;
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.04em;
    text-shadow: 0 0 40px rgba(37,99,235,0.5);
    line-height: 1.1;
}
.gd-bundle-price small { font-size: 13px; color: rgba(255,255,255,0.4); }
.gd-bundle-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--color-primary,#2563eb);
    color: #fff;
    padding: 15px 32px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16,1,0.3,1);
    box-shadow: 0 4px 24px rgba(37,99,235,0.4);
    white-space: nowrap;
}
.gd-bundle-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 32px rgba(37,99,235,0.55);
    background: #1d4ed8;
}

/* ── PRICING SECTION ────────────────────────────────────────────────────── */
.gd-pricing-section {
    padding: 100px 0;
    background: var(--color-bg-dark, #f8f9fc);
}

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

.gd-price-card {
    background: var(--color-bg-card, #fff);
    border: 1px solid var(--color-border-glass, rgba(0,0,0,0.08));
    border-radius: 20px;
    padding: 36px 28px 32px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
    box-shadow: 0 4px 16px rgba(0,0,0,0.04);
    opacity: 0;
    transform: translateY(20px);
}
.gd-price-card.visible { opacity:1; transform:translateY(0); }
.gd-price-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 52px rgba(0,0,0,0.1);
}

/* Tier top bar */
.gd-price-tier {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    border-radius: 20px 20px 0 0;
}
.gd-tier-starter { background: linear-gradient(90deg,#6b7280,#9ca3af); }
.gd-tier-elite   { background: linear-gradient(90deg,#1d4ed8,#2563eb,#3b82f6); }
.gd-tier-pro     { background: linear-gradient(90deg,#d97706,#f59e0b); }

/* Popular card — dark bg */
.gd-price-card-popular {
    background: #0f1117;
    border-color: rgba(37,99,235,0.3);
    box-shadow: 0 16px 48px rgba(37,99,235,0.15);
    transform: translateY(-8px);
}
.gd-price-card-popular.visible  { transform: translateY(-8px); }
.gd-price-card-popular:hover    { transform: translateY(-14px); }

.gd-popular-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #60a5fa;
    background: rgba(37,99,235,0.15);
    border: 1px solid rgba(37,99,235,0.25);
    padding: 5px 12px;
    border-radius: 100px;
    margin-bottom: 18px;
    width: fit-content;
}

/* Pro card */
.gd-price-card-pro {
    border-color: rgba(245,158,11,0.2);
    background: linear-gradient(160deg, #fffbeb 0%, #fff 60%);
}

/* Icon */
.gd-price-icon {
    width: 48px; height: 48px;
    border-radius: 12px;
    background: rgba(37,99,235,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: var(--color-primary,#2563eb);
}
.gd-price-icon-elite { background: rgba(37,99,235,0.18); }
.gd-price-icon-pro   { background: rgba(245,158,11,0.12); }

/* Names */
.gd-price-name {
    font-size: 20px;
    font-weight: 800;
    color: var(--color-text-pure,#0f1117);
    margin-bottom: 4px;
}
.gd-price-name-elite { color: #93c5fd; }
.gd-price-name-pro   { color: #d97706; }
.gd-price-sub        { font-size: 13px; color: #6b7280; margin-bottom: 18px; }

/* Amount */
.gd-price-amount {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 16px;
}
.gd-price-cur  { font-size: 14px; font-weight: 700; color: #6b7280; }
.gd-price-num  { font-size: 38px; font-weight: 900; letter-spacing: -0.04em; color: #0f1117; line-height: 1; }
.gd-price-per  { font-size: 14px; color: #6b7280; margin-left: 2px; }

.gd-price-divider {
    height: 1px;
    background: rgba(0,0,0,0.07);
    border: none;
    margin-bottom: 18px;
}
.gd-price-divider-elite { background: rgba(37,99,235,0.2); }
.gd-price-divider-pro   { background: rgba(245,158,11,0.2); }

/* Features */
.gd-price-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
    flex: 1;
}
.gd-price-features li {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 13.5px;
    color: #374151;
    font-weight: 500;
}
.gd-price-card-popular .gd-price-features li { color: #d1d5db; }

/* Buttons */
.gd-price-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px 20px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: auto;
    font-family: inherit;
}
.gd-btn-std {
    background: rgba(0,0,0,0.04);
    color: #374151;
    border: 1px solid rgba(0,0,0,0.1);
}
.gd-btn-std:hover {
    background: var(--color-primary,#2563eb);
    color: #fff;
    border-color: var(--color-primary,#2563eb);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37,99,235,0.3);
}
.gd-btn-elite {
    background: linear-gradient(135deg,#1d4ed8,#2563eb);
    color: #fff;
    border: none;
    box-shadow: 0 8px 24px rgba(37,99,235,0.4);
}
.gd-btn-elite:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(37,99,235,0.55);
}
.gd-btn-pro {
    background: linear-gradient(135deg,#d97706,#f59e0b);
    color: #0f1117;
    border: none;
    font-weight: 800;
    box-shadow: 0 8px 24px rgba(245,158,11,0.3);
}
.gd-btn-pro:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(245,158,11,0.45);
}

/* ── PROCESS SECTION ────────────────────────────────────────────────────── */
.gd-process-section {
    padding: 100px 0;
    background: #fff;
}

.gd-process-steps {
    display: flex;
    align-items: flex-start;
    gap: 0;
    margin-top: 60px;
}
.gd-process-step {
    flex: 1;
    padding: 32px 24px;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.16,1,0.3,1);
    background: var(--color-bg-dark,#f8f9fc);
    border: 1px solid var(--color-border-glass,rgba(0,0,0,0.07));
    border-radius: 16px;
    margin: 0 4px;
    position: relative;
}
.gd-process-step.visible { opacity:1; transform:translateY(0); }
.gd-process-step:hover   { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(0,0,0,0.07); }

.gd-process-num {
    font-size: 22px;
    font-weight: 900;
    border: 2px solid;
    border-radius: 16px;
    width: 58px; height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    letter-spacing: -0.02em;
}
.gd-process-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-text-pure,#0f1117);
    margin-bottom: 10px;
}
.gd-process-desc { font-size: 13.5px; color: var(--color-text-silver,#6b7280); line-height: 1.6; }

.gd-process-arrow {
    font-size: 22px;
    color: #d1d5db;
    padding: 0 4px;
    flex-shrink: 0;
    align-self: center;
}

/* ── RESULTS SECTION ────────────────────────────────────────────────────── */
.gd-results-section { padding: 100px 0; background: var(--color-bg-dark,#f8f9fc); }

.gd-results-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 24px;
}
.gd-result-card {
    background: #fff;
    border: 1px solid var(--color-border-glass,rgba(0,0,0,0.07));
    border-radius: 18px;
    padding: 36px 28px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.16,1,0.3,1);
}
.gd-result-card.visible  { opacity:1; transform:translateY(0); }
.gd-result-card:hover    { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.07); }

.gd-result-card-featured {
    background: linear-gradient(135deg,#0f1117 0%,#1e293b 100%);
    border-color: rgba(37,99,235,0.3);
    position: relative;
    overflow: hidden;
}
.gd-result-card-featured::before {
    content:'';
    position:absolute;
    top:-50%;left:-50%;
    width:200%;height:200%;
    background: radial-gradient(circle at 60% 40%,rgba(37,99,235,0.18) 0%,transparent 60%);
    pointer-events:none;
}

.gd-result-metric {
    font-size: 50px;
    font-weight: 900;
    color: var(--color-primary,#2563eb);
    letter-spacing: -0.04em;
    line-height: 1;
    margin-bottom: 6px;
}
.gd-result-card-featured .gd-result-metric { color: #93c5fd; }

.gd-result-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-text-silver,#6b7280);
    margin-bottom: 16px;
}
.gd-result-card-featured .gd-result-label { color: rgba(255,255,255,0.45); }

.gd-result-text {
    font-size: 14px;
    color: var(--color-text-silver,#6b7280);
    line-height: 1.65;
    margin-bottom: 24px;
    font-style: italic;
}
.gd-result-card-featured .gd-result-text { color: rgba(255,255,255,0.7); }

.gd-result-author { display: flex; align-items: center; gap: 12px; }
.gd-result-author .t-avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}
.gd-result-author div:last-child strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--color-text-pure,#0f1117);
}
.gd-result-card-featured .gd-result-author div:last-child strong { color: #fff; }
.gd-result-author div:last-child span { font-size: 12px; color: var(--color-text-silver,#6b7280); }
.gd-result-card-featured .gd-result-author div:last-child span { color: rgba(255,255,255,0.45); }

/* ── CTA overrides ──────────────────────────────────────────────────────── */
.gd-cta-section { background: #fff; }

/* ── Floating WhatsApp ──────────────────────────────────────────────────── */
.gd-float-wa {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 6px 28px rgba(37,211,102,0.5);
    transition: all 0.35s cubic-bezier(0.16,1,0.3,1);
    animation: gdFloatIn 0.8s cubic-bezier(0.16,1,0.3,1) 1.2s both;
}
.gd-float-wa span { display: none !important; }
.gd-float-wa:hover {
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 12px 36px rgba(37,211,102,0.65);
}
@keyframes gdFloatIn {
    from { opacity:0; transform:translateY(20px) scale(0.8); }
    to   { opacity:1; transform:translateY(0)    scale(1);   }
}

/* ── Reveal animation ───────────────────────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.16,1,0.3,1);
}
.reveal.visible { opacity:1; transform:translateY(0); }

/* ── Shared fade-up keyframe ────────────────────────────────────────────── */
@keyframes gdFadeUp {
    from { opacity:0; transform:translateY(24px); }
    to   { opacity:1; transform:translateY(0); }
}

/* ── Section header spacing ─────────────────────────────────────────────── */
.section-header { margin-bottom: 56px; }
.section-header .section-desc { margin-bottom: 0; }

/* ── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .gd-services-grid  { grid-template-columns: repeat(2,1fr); }
    .gd-pricing-grid   { grid-template-columns: repeat(2,1fr); }
    .gd-results-grid   { grid-template-columns: repeat(2,1fr); }
    .gd-process-steps  { flex-wrap: wrap; }
    .gd-process-arrow  { display: none; }
    .gd-bundle-inner   { padding: 36px; }
    .gd-price-card-popular { transform: none; }
    .gd-price-card-popular.visible { transform: none; }
    .gd-price-card-popular:hover   { transform: translateY(-6px); }
}
@media (max-width: 768px) {
    .gd-hero           { padding: 88px 0 0; }
    .gd-services-grid  { grid-template-columns: 1fr; }
    .gd-pricing-grid   { grid-template-columns: 1fr; }
    .gd-results-grid   { grid-template-columns: 1fr; }
    .gd-hero-stats     { flex-wrap: wrap; gap: 16px; }
    .gd-bundle-inner   { flex-direction: column; text-align: center; padding: 28px 20px; }
    .gd-bundle-includes { justify-content: center; }
    .gd-bundle-right   { width: 100%; }
    .gd-tools-inner    { justify-content: center; }
    .gd-process-steps  { flex-direction: column; }
    .gd-process-step   { margin: 0 0 12px; }
    .gd-hero-actions   { justify-content: center; }
}
@media (max-width: 480px) {
    .gd-pricing-grid   { grid-template-columns: 1fr; }
    .gd-results-grid   { grid-template-columns: 1fr; }
}