/* ============================================================
   SERVICES — PAGE HERO
============================================================ */
.page-hero{background:var(--ink);color:var(--cream);padding:60px 0 80px;position:relative;overflow:hidden;}
.page-hero::before{content:'';position:absolute;inset:0;opacity:.4;background-image:radial-gradient(circle at 85% 12%,rgba(253,164,0,.16),transparent 45%),radial-gradient(circle at 8% 90%,rgba(39,115,80,.35),transparent 45%);pointer-events:none;}
.page-hero .float-shape{position:absolute;border-radius:50%;opacity:.06;pointer-events:none;}
.page-hero .float-shape.s1{width:300px;height:300px;top:-100px;right:-50px;background:var(--amber);}
.page-hero .float-shape.s2{width:200px;height:200px;bottom:-60px;left:-40px;background:var(--emerald);}
.page-hero .container{position:relative;z-index:2;}
.page-hero .breadcrumb{display:flex;align-items:center;gap:8px;font-family:var(--font-utility);font-size:.82rem;color:var(--cream-70);margin-bottom:20px;}
.page-hero .breadcrumb a{color:var(--amber);transition:color .2s;}
.page-hero .breadcrumb a:hover{color:var(--cream);}
.page-hero .breadcrumb svg{width:12px;height:12px;color:var(--cream-40);}
.hero-content{display:grid;grid-template-columns:1.2fr .8fr;gap:60px;align-items:center;}
.hero-content .hero-text{display:flex;flex-direction:column;}
.hero-content h1{font-family:var(--font-display);font-size:clamp(2.4rem,1.6rem + 3vw,3.8rem);line-height:1.15;margin-bottom:12px;}
.hero-content h1 span{color:var(--amber);}
.hero-content .hero-text p{color:var(--cream-70);font-size:1.05rem;max-width:500px;line-height:1.8;margin-bottom:28px;}
.hero-content .hero-stats{display:flex;gap:40px;}
.hero-content .hero-stats .stat{text-align:left;}
.hero-content .hero-stats .stat .num{font-family:var(--font-display);font-size:2rem;color:var(--amber);display:block;line-height:1.2;}
.hero-content .hero-stats .stat .label{font-family:var(--font-utility);font-size:.82rem;color:var(--cream-70);}
.hero-content .hero-visual{position:relative;}
.hero-content .hero-visual .illustration-box{border-radius:var(--radius-l);overflow:hidden;background:linear-gradient(145deg,var(--emerald-2),var(--ink-2));aspect-ratio:4/3;display:flex;align-items:center;justify-content:center;box-shadow:var(--shadow-pop);}
.hero-content .hero-visual .illustration-box svg{width:100px;height:100px;color:var(--amber);opacity:.5;}
.hero-content .hero-visual .floating-badge{position:absolute;background:var(--cream);color:var(--ink);border-radius:14px;padding:12px 18px;box-shadow:var(--shadow-pop);display:flex;align-items:center;gap:10px;font-family:var(--font-utility);font-weight:600;font-size:.82rem;animation:floatBadge 5s ease-in-out infinite;}
.hero-content .hero-visual .floating-badge svg{width:18px;height:18px;color:var(--amber-2);}
.hero-content .hero-visual .floating-badge.b1{top:-8%;right:-6%;}
.hero-content .hero-visual .floating-badge.b2{bottom:-4%;left:-10%;animation-delay:1.8s;}
@keyframes floatBadge{0%,100%{transform:translateY(0)}50%{transform:translateY(-12px)}}
@media(max-width:900px){.hero-content{grid-template-columns:1fr;gap:40px}.hero-content .hero-visual{order:-1}.hero-content .hero-visual .floating-badge{display:none}.page-hero{padding:40px 0 50px}.hero-content .hero-stats{gap:24px;flex-wrap:wrap}}

/* ============================================================
   SERVICES — SERVICES GRID
============================================================ */
.services-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:28px;}
.service-card{background:var(--white);border-radius:var(--radius-m);padding:32px 28px;box-shadow:var(--shadow-card);transition:transform .35s ease,box-shadow .35s ease;position:relative;overflow:hidden;text-align:center;}
.service-card::after{content:'';position:absolute;bottom:0;left:0;right:0;height:4px;background:linear-gradient(90deg,var(--amber),var(--emerald));transform:scaleX(0);transition:transform .4s;transform-origin:left;}
.service-card:hover::after{transform:scaleX(1)}
.service-card:hover{transform:translateY(-8px);box-shadow:var(--shadow-pop);}
.service-card .icon{width:64px;height:64px;border-radius:50%;background:var(--cream-2);display:flex;align-items:center;justify-content:center;margin:0 auto 18px;transition:background .3s,transform .3s;}
.service-card:hover .icon{background:var(--cream);transform:scale(1.05) rotate(-4deg);}
.service-card .icon svg{width:28px;height:28px;color:var(--emerald);transition:color .3s;}
.service-card:hover .icon svg{color:var(--amber);}
.service-card h3{font-weight:700;font-size:1.1rem;margin-bottom:8px;}
.service-card p{color:var(--ink-60);font-size:.92rem;line-height:1.7;margin-bottom:18px;}
.service-card .service-cta{display:inline-flex;align-items:center;gap:8px;font-family:var(--font-utility);font-weight:600;color:var(--emerald);font-size:.85rem;transition:gap .2s,color .2s;}
.service-card .service-cta:hover{gap:14px;color:var(--amber-2);}
.service-card .service-cta svg{width:14px;height:14px;}
.service-card.featured{grid-column:span 2;text-align:left;display:flex;align-items:center;gap:32px;padding:36px 40px;}
.service-card.featured .icon{margin:0;flex:none;width:72px;height:72px;}
.service-card.featured .icon svg{width:32px;height:32px;}
.service-card.featured .content{flex:1;}
.service-card.featured .content h3{font-size:1.2rem;}
.service-card.featured .content p{margin-bottom:12px;max-width:500px;}
.service-card.featured::after{height:4px;background:linear-gradient(90deg,var(--amber),var(--emerald));}
@media(max-width:960px){.services-grid{grid-template-columns:1fr 1fr}.service-card.featured{grid-column:span 1;flex-direction:column;text-align:center;padding:32px 28px}.service-card.featured .icon{margin:0 auto 18px}.service-card.featured .content p{max-width:100%}}
@media(max-width:600px){.services-grid{grid-template-columns:1fr}}

/* ============================================================
   SERVICES — PRICING
============================================================ */
.pricing-section{background:var(--cream-2);}
.pricing-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;margin-top:10px;}
.pricing-card{background:var(--white);border-radius:var(--radius-m);padding:32px 28px 36px;box-shadow:var(--shadow-card);text-align:center;border:2px solid transparent;transition:border-color .3s,transform .3s,box-shadow .3s;position:relative;}
.pricing-card:hover{transform:translateY(-6px);box-shadow:var(--shadow-pop);}
.pricing-card.featured{border-color:var(--amber);}
.pricing-card.featured::before{content:'Most Popular';position:absolute;top:-12px;left:50%;transform:translateX(-50%);background:var(--amber);color:var(--ink);padding:3px 20px;border-radius:999px;font-family:var(--font-utility);font-size:.7rem;font-weight:700;letter-spacing:.04em;}
.pricing-card .plan-name{font-weight:700;font-size:1.1rem;color:var(--ink);}
.pricing-card .price{font-family:var(--font-display);font-size:2.8rem;color:var(--emerald);margin:12px 0 4px;line-height:1.2;}
.pricing-card .price span{font-size:1rem;color:var(--ink-60);font-family:var(--font-body);font-weight:400;}
.pricing-card .price-desc{font-size:.85rem;color:var(--ink-60);margin-bottom:20px;}
.pricing-card .features{text-align:start;margin:0 0 24px;padding:0;}
.pricing-card .features li{display:flex;align-items:center;gap:12px;font-size:.88rem;color:var(--ink-60);padding:8px 0;border-bottom:1px solid var(--ink-12);}
.pricing-card .features li:last-child{border-bottom:0;}
.pricing-card .features li svg{width:16px;height:16px;color:var(--amber);flex:none;}
.pricing-card .features li .check{color:var(--emerald);}
@media(max-width:960px){.pricing-grid{grid-template-columns:1fr 1fr}}
@media(max-width:600px){.pricing-grid{grid-template-columns:1fr}}

/* ============================================================
   SERVICES — CTA
============================================================ */
.cta-section{background:var(--ink);color:var(--cream);position:relative;overflow:hidden;}
.cta-section::before{content:'';position:absolute;inset:0;opacity:.3;background-image:radial-gradient(circle at 80% 20%,rgba(253,164,0,.15),transparent 50%),radial-gradient(circle at 20% 80%,rgba(39,115,80,.2),transparent 50%);pointer-events:none;}
.cta-section .container{position:relative;z-index:2;display:flex;align-items:center;justify-content:space-between;gap:40px;flex-wrap:wrap;padding-block:64px;}
.cta-section .cta-text h2{font-family:var(--font-display);font-size:clamp(1.8rem,1.3rem + 1.8vw,2.6rem);color:var(--cream);margin-bottom:8px;}
.cta-section .cta-text h2 span{color:var(--amber);}
.cta-section .cta-text p{color:var(--cream-70);max-width:460px;}
.cta-section .cta-actions{display:flex;gap:14px;flex-wrap:wrap;}
@media(max-width:768px){.cta-section .container{flex-direction:column;text-align:center}.cta-section .cta-text p{max-width:100%}.cta-section .cta-actions{justify-content:center}}

/* ============================================================
   SERVICES — RESPONSIVE
============================================================ */
@media(max-width:768px){.services-grid{gap:20px}.service-card{padding:24px 20px}.pricing-card{padding:24px 20px 28px}}
