/* --- KEYFRAME ANIMATIONS --- */
@keyframes fadeInUp {
   from {
      opacity: 0;
      transform: translateY(30px);
   }

   to {
      opacity: 1;
      transform: translateY(0);
   }
}

@keyframes pulse {

   0%,
   100% {
      transform: scale(1);
   }

   50% {
      transform: scale(1.05);
   }
}

/* --- VARIABLES --- */
:root {
   --white: #ffffff;
   --off-white: #fafaf9;
   --soft: #f8fafc;
   --mid: #e2e8f0;
   --ink: #0f172a;
   --ink-light: #1e293b;
   --ink-muted: #64748b;

   /* DesignProHive Brand Palette */
   --accent: #19bb9d;
   /* Vibrant Teal */
   --accent-dark: #1280a4;
   /* Deep Blue */
   --accent-light: #a77698;
   /* Soft Purple */
   --teal-deep: #1280a4;
   /* Deep Blue */
   --teal-glow: rgba(25, 187, 157, 0.4);

   --grad-a: #19bb9d;
   --grad-b: #1280a4;
   --grad-c: #a77698;

   /* DesignProHive Brand Gradients */
   --grad-hero: linear-gradient(135deg, #a77698 0%, #1280a4 50%, #19bb9d 100%);
   --grad-royal: linear-gradient(135deg, #1280a4 0%, #19bb9d 100%);
   --grad-ocean: linear-gradient(135deg, #0f172a 0%, #1280a4 100%);
   --grad-sunset: linear-gradient(135deg, #19bb9d 0%, #a77698 100%);
   --grad-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));

   --font-display: 'Cormorant Garamond', Georgia, serif;
   --font-body: 'DM Sans', system-ui, sans-serif;

   --radius: 12px;
   --radius-lg: 20px;
   --radius-xl: 32px;
   --shadow-sm: 0 2px 12px rgba(0, 0, 0, .06);
   --shadow-md: 0 8px 32px rgba(0, 0, 0, .1);
   --shadow-lg: 0 20px 60px rgba(0, 0, 0, .13);
   --shadow-glow: 0 0 30px rgba(25, 187, 157, 0.3);
   --transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Glassmorphism Utilities */
.glass {
   background: rgba(255, 255, 255, 0.08);
   backdrop-filter: blur(12px);
   -webkit-backdrop-filter: blur(12px);
   border: 1px solid rgba(255, 255, 255, 0.15);
}

.glass-dark {
   background: rgba(0, 0, 0, 0.2);
   backdrop-filter: blur(16px);
   -webkit-backdrop-filter: blur(16px);
   border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Background elements base */
.section-bg {
   position: absolute;
   inset: 0;
   z-index: 0;
   pointer-events: none;
   overflow: hidden;
}

.bg-blob {
   position: absolute;
   border-radius: 50%;
   filter: blur(100px);
   opacity: 0.4;
   animation: blobMotion 20s infinite alternate;
}

@keyframes blobMotion {
   0% {
      transform: translate(0, 0) scale(1);
   }

   33% {
      transform: translate(30px, -50px) scale(1.1);
   }

   66% {
      transform: translate(-20px, 20px) scale(0.9);
   }

   100% {
      transform: translate(0, 0) scale(1);
   }
}

/* Enhanced hover support */
.btn,
.nav-link,
.social-link {
   transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1) !important;
}

@keyframes spin {
   to {
      transform: rotate(360deg);
   }
}

@keyframes float {
   0% {
      transform: translateY(0);
   }

   50% {
      transform: translateY(-10px);
   }

   100% {
      transform: translateY(0);
   }
}

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

html {
   scroll-behavior: smooth;
   font-size: 16px;
}

body {
   font-family: var(--font-body);
   color: var(--ink);
   background: var(--white);
   -webkit-font-smoothing: antialiased;
   overflow-x: hidden;
}


/* Noise Overlay */
.noise-overlay {
   position: fixed;
   inset: 0;
   z-index: 9998;
   pointer-events: none;
   opacity: 0.04;
   background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

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

a {
   color: inherit;
   text-decoration: none;
}

ul {
   list-style: none;
}

button {
   cursor: pointer;
   border: none;
   background: none;
   font-family: inherit;
}

input,
textarea,
select {
   font-family: inherit;
}

/* --- HIDDEN UTILITY --- */
.hidden {
   display: none !important;
}

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

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
   position: fixed;
   top: 0;
   left: 0;
   right: 0;
   z-index: 100;
   padding: 20px 0;
   transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}

.navbar.scrolled {
   background: rgba(255, 255, 255, .95);
   backdrop-filter: blur(12px);
   -webkit-backdrop-filter: blur(12px);
   box-shadow: var(--shadow-sm);
   padding: 14px 0;
}

.navbar.scrolled .nav-link {
   color: var(--ink);
}

.nav-inner {
   max-width: 1160px;
   margin: 0 auto;
   padding: 0 24px;
   display: flex;
   align-items: center;
   gap: 32px;
}

.nav-logo {
   display: flex;
   align-items: center;
   gap: 10px;
   font-family: var(--font-display);
   font-size: 1.4rem;
   font-weight: 400;
   letter-spacing: .1em;
   color: var(--ink);
}

.nav-logo img {
   width: 240px;
}

.logo-mark {
   width: 34px;
   height: 34px;
   background: var(--ink);
   color: #fff;
   border-radius: 8px;
   display: grid;
   place-items: center;
   font-size: 1.1rem;
   font-weight: 600;
   font-family: var(--font-display);
   letter-spacing: 0;
   flex-shrink: 0;
}

.nav-links {
   display: flex;
   gap: 32px;
   margin-left: auto;
}

.nav-link {
   font-size: .88rem;
   font-weight: 400;
   letter-spacing: .04em;
   color: var(--white);
   position: relative;
   transition: all var(--transition);
}

.nav-link::after {
   content: '';
   position: absolute;
   bottom: -2px;
   left: 0;
   width: 0;
   height: 1px;
   background: var(--accent);
   transition: width var(--transition);
}

.nav-link:hover,
.nav-link.active {
   color: var(--accent);
   transform: translateY(-1px);
}

.nav-link:hover::after,
.nav-link.active::after {
   width: 100%;
}

.nav-cta {
   margin-left: 16px;
   padding: 9px 22px;
   background: var(--ink);
   color: #fff;
   border-radius: 8px;
   font-size: .88rem;
   font-weight: 500;
   letter-spacing: .03em;
   transition: background var(--transition), transform var(--transition);
   white-space: nowrap;
}

.nav-cta:hover {
   background: var(--accent-dark);
   transform: translateY(-1px);
}

.nav-toggle {
   display: none;
   flex-direction: column;
   gap: 5px;
   padding: 6px;
   margin-left: auto;
}

.nav-toggle span {
   display: block;
   width: 24px;
   height: 2px;
   background: var(--ink);
   border-radius: 2px;
   transition: var(--transition);
}

.nav-toggle.open span:nth-child(1) {
   transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
   opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
   transform: translateY(-7px) rotate(-45deg);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   gap: 8px;
   padding: 13px 28px;
   border-radius: 9px;
   font-size: .9rem;
   font-weight: 500;
   letter-spacing: .03em;
   transition: all var(--transition);
   position: relative;
   overflow: hidden;
}

.btn-primary {
   background: var(--ink);
   color: #fff;
}

.btn-primary:hover {
   background: var(--accent-dark);
   transform: translateY(-3px) scale(1.02);
   box-shadow: 0 12px 28px rgba(0, 0, 0, .25);
}

.btn-ghost {
   background: transparent;
   color: var(--ink);
   border: 1.5px solid rgba(26, 23, 20, .2);
}

.btn-ghost:hover {
   border-color: var(--accent);
   background: rgba(25, 187, 157, 0.05);
   transform: translateY(-3px) scale(1.02);
}

.btn-outline {
   background: transparent;
   color: var(--ink);
   border: 1.5px solid var(--mid);
}

.btn-outline:hover {
   border-color: var(--accent);
   background: var(--accent);
   color: #fff;
   transform: translateY(-3px) scale(1.02);
   box-shadow: 0 8px 24px rgba(25, 187, 157, 0.3);
}

.btn-white {
   background: #fff;
   color: var(--ink);
   font-weight: 600;
}

.btn-white:hover {
   transform: translateY(-2px);
   box-shadow: 0 8px 24px rgba(0, 0, 0, .15);
}

.btn-full {
   width: 100%;
}

.btn-loader {
   display: none;
   width: 16px;
   height: 16px;
   border: 2px solid currentColor;
   border-top-color: transparent;
   border-radius: 50%;
   animation: spin .8s linear infinite;
}

.btn.loading .btn-text {
   opacity: 0;
}

.btn.loading .btn-loader {
   display: block;
   position: absolute;
}

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section-eyebrow {
   font-size: .78rem;
   font-weight: 500;
   letter-spacing: .16em;
   text-transform: uppercase;
   color: var(--accent-dark);
   margin-bottom: 12px;
}

.section-title {
   font-family: var(--font-display);
   font-size: clamp(2rem, 4vw, 2.8rem);
   font-weight: 300;
   line-height: 1.18;
   color: var(--ink);
   text-align: center;
   position: relative;
   margin-bottom: 24px;
}

.section-title::after {
   content: '';
   position: absolute;
   bottom: -12px;
   left: 50%;
   transform: translateX(-50%);
   width: 60px;
   height: 2px;
   background: var(--accent);
   border-radius: 1px;
}

.section-title em {
   font-style: italic;
   color: var(--accent-dark);
}

.section-title.left {
   text-align: left;
}

.section-header {
   text-align: center;
   margin-bottom: 56px;
}

.section-header .section-eyebrow {
   text-align: center;
}

/* ============================================================
   AOS (custom lightweight scroll animations)
   ============================================================ */
[data-aos] {
   opacity: 0;
   transform: translateY(24px);
   transition: opacity .6s ease, transform .6s ease;
}

[data-aos="fade-right"] {
   transform: translateX(-24px);
}

[data-aos="fade-left"] {
   transform: translateX(24px);
}

[data-aos].aos-animate {
   opacity: 1;
   transform: translate(0);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
   min-height: 100vh;
   display: flex;
   align-items: center;
   padding: 120px 0 80px;
   position: relative;
   overflow: hidden;
   background: url(images/bg.webp) center center / cover no-repeat;
}

.hero-bg {
   position: absolute;
   inset: 0;
   z-index: 0;
   pointer-events: none;
   display: none;
}

.hero-blob {
   position: absolute;
   border-radius: 50%;
   filter: blur(80px);
   opacity: .5;
}

.blob-1 {
   width: 600px;
   height: 600px;
   top: -100px;
   right: -100px;
   background: radial-gradient(circle, var(--accent-light), transparent 70%);
   animation: blobFloat 10s ease-in-out infinite;
}

.blob-2 {
   width: 400px;
   height: 400px;
   bottom: -50px;
   left: 200px;
   background: radial-gradient(circle, var(--red-deep), transparent 70%);
   animation: blobFloat 14s ease-in-out infinite reverse;
}

.blob-3 {
   width: 300px;
   height: 300px;
   top: 30%;
   left: -50px;
   background: radial-gradient(circle, var(--grad-b), transparent 70%);
   animation: blobFloat 8s ease-in-out infinite 2s;
}

.hero-grid {
   position: absolute;
   inset: 0;
   background-image:
      linear-gradient(rgba(26, 23, 20, .04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(26, 23, 20, .04) 1px, transparent 1px);
   background-size: 64px 64px;
}

.hero-inner {
   position: relative;
   z-index: 1;
   max-width: 1160px;
   margin: 0 auto;
   padding: 0 24px;
   display: grid;
   grid-template-columns: 1fr 460px;
   gap: 80px;
   align-items: center;
}

.hero-eyebrow {
   font-size: .78rem;
   font-weight: 500;
   letter-spacing: .16em;
   text-transform: uppercase;
   color: var(--accent-dark);
   margin-bottom: 20px;
}

.hero-headline {
   font-family: var(--font-display);
   font-size: clamp(2.8rem, 5.5vw, 4.4rem);
   font-weight: 300;
   line-height: 1.1;
   letter-spacing: -.01em;
   color: var(--ink);
   margin-bottom: 24px;
   animation: fadeInUp 1s ease-out;
}

.hero-headline em {
   font-style: italic;
   color: var(--accent-dark);
}

.hero-sub {
   font-size: 1.05rem;
   line-height: 1.65;
   color: var(--ink-light);
   max-width: 480px;
   margin-bottom: 36px;
   animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-actions {
   display: flex;
   gap: 14px;
   flex-wrap: wrap;
   margin-bottom: 48px;
   animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-trust {
   display: none;
   align-items: center;
   gap: 16px;
   flex-wrap: wrap;
}

.trust-item {
   font-size: .84rem;
   color: var(--ink-light);
}

.trust-item strong {
   color: var(--ink);
   font-weight: 600;
   margin-right: 4px;
}

.trust-dot {
   width: 4px;
   height: 4px;
   border-radius: 50%;
   background: var(--mid);
}

/* Hero Form */
.hero-form-card {
   background: rgba(255, 255, 255, 0.7);
   backdrop-filter: blur(20px);
   -webkit-backdrop-filter: blur(20px);
   border: 1px solid rgba(255, 255, 255, 0.3);
   border-radius: var(--radius-xl);
   padding: 40px;
   box-shadow: var(--shadow-lg);
   position: relative;
   overflow: hidden;
}

.hero-form-card::before {
   content: '';
   position: absolute;
   top: -50%;
   left: -50%;
   width: 200%;
   height: 200%;
   background: radial-gradient(circle, rgba(25, 187, 157, 0.05), transparent 70%);
   pointer-events: none;
}

.form-title {
   font-family: var(--font-display);
   font-size: 1.5rem;
   font-weight: 400;
   margin-bottom: 6px;
}

.form-sub {
   font-size: .84rem;
   color: var(--ink-muted);
   margin-bottom: 28px;
}

/* Floating Label Fields */
.field-group {
   position: relative;
   margin-bottom: 28px;
   transition: transform 0.3s ease;
}

.field-group:hover {
   transform: translateY(-2px);
}

.field-input {
   width: 100%;
   padding: 18px 0 8px;
   background: transparent;
   border: none;
   border-bottom: 1.5px solid var(--mid);
   font-size: .95rem;
   color: var(--ink);
   outline: none;
   transition: border-color var(--transition);
   resize: none;
}

.field-textarea {
   resize: vertical;
   min-height: 70px;
}

.field-select {
   -webkit-appearance: none;
   appearance: none;
   cursor: pointer;
}

.field-select option {
   color: var(--ink);
   background: #fff;
}

.field-label {
   position: absolute;
   top: 18px;
   left: 0;
   font-size: .92rem;
   color: var(--ink-muted);
   pointer-events: none;
   transition: all var(--transition);
   transform-origin: left top;
}

.field-input:focus~.field-label,
.field-input:not(:placeholder-shown)~.field-label {
   transform: translateY(-16px) scale(.78);
   color: var(--accent-dark);
}

.field-line {
   position: absolute;
   bottom: 0;
   left: 0;
   width: 0;
   height: 1.5px;
   background: var(--accent-dark);
   transition: width .4s ease;
}

.field-input:focus~.field-line {
   width: 100%;
}

.field-input.error~.field-line {
   background: #1280a4;
   width: 100%;
}

.field-input:focus {
   border-bottom-color: transparent;
}

.form-success {
   display: none;
   margin-top: 12px;
   font-size: .88rem;
   color: #2d7a4f;
   text-align: center;
   padding: 10px;
   background: rgba(45, 122, 79, .08);
   border-radius: 8px;
}

.form-success.visible {
   display: block;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services {
   padding: 120px 0;
   background: var(--off-white);
   position: relative;
   overflow: hidden;
}

.services-tabs {
   display: flex;
   gap: 8px;
   justify-content: center;
   margin-bottom: 48px;
}

.tab-btn {
   padding: 9px 24px;
   border-radius: 30px;
   font-size: .88rem;
   font-weight: 500;
   color: var(--ink-muted);
   background: var(--soft);
   border: 1.5px solid transparent;
   transition: all var(--transition);
}

.tab-btn.active,
.tab-btn:hover {
   background: var(--ink);
   color: #fff;
   border-color: var(--ink);
}

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

.service-card {
   padding: 40px 32px;
   background: rgba(255, 255, 255, 0.6);
   backdrop-filter: blur(8px);
   -webkit-backdrop-filter: blur(8px);
   border: 1px solid rgba(255, 255, 255, 0.4);
   border-radius: var(--radius-xl);
   transition: all var(--transition);
   position: relative;
   overflow: hidden;
   z-index: 1;
}

.service-card::before {
   content: '';
   position: absolute;
   inset: 0;
   background: var(--grad-royal);
   opacity: 0;
   transition: opacity var(--transition);
   z-index: -1;
}

.service-card:hover {
   transform: translateY(-12px) scale(1.02);
   box-shadow: var(--shadow-lg), var(--shadow-glow);
   border-color: transparent;
   color: white;
   background: rgba(255, 255, 255, 0.8);
}

.service-card:hover::before {
   opacity: 1;
}

.service-icon {
   width: 52px;
   height: 52px;
   background: var(--ink);
   border-radius: 12px;
   display: grid;
   place-items: center;
   margin-bottom: 22px;
   color: #fff;
   position: relative;
}

.service-icon svg {
   width: 26px;
   height: 26px;
}

.service-name {
   font-family: var(--font-display);
   font-size: 1.3rem;
   font-weight: 400;
   margin-bottom: 10px;
   position: relative;
}

.service-desc {
   font-size: .9rem;
   line-height: 1.65;
   color: var(--ink-light);
   margin-bottom: 18px;
   position: relative;
}

.service-card:hover .service-desc {
   color: white;
}

.service-tags {
   display: flex;
   gap: 6px;
   flex-wrap: wrap;
   position: relative;
}

.service-tags span {
   font-size: .74rem;
   padding: 4px 10px;
   border-radius: 20px;
   background: var(--mid);
   color: var(--ink-light);
   font-weight: 500;
   letter-spacing: .03em;
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why {
   padding: 120px 0;
   background: var(--ink);
   color: #fff;
   position: relative;
   overflow: hidden;
}

.why-bg {
   position: absolute;
   inset: 0;
   pointer-events: none;
}

.why-blob {
   position: absolute;
   width: 600px;
   height: 600px;
   border-radius: 50%;
   background: radial-gradient(circle, rgba(25, 187, 157, 0.15), transparent 70%);
   top: -100px;
   right: -100px;
   animation: blobMotion 25s infinite alternate;
}

.why .section-eyebrow {
   color: var(--accent);
}

.why .section-title {
   color: #fff;
}

.stats-row {
   display: none;
   grid-template-columns: repeat(4, 1fr);
   gap: 32px;
   margin-bottom: 64px;
   padding: 40px;
   background: rgba(255, 255, 255, .04);
   border: 1px solid rgba(255, 255, 255, .08);
   border-radius: var(--radius-lg);
}

.stat-item {
   text-align: center;
}

.stat-number {
   font-family: var(--font-display);
   font-size: 3.4rem;
   font-weight: 300;
   color: var(--accent);
   line-height: 1;
}

.stat-suffix {
   font-family: var(--font-display);
   font-size: 2.2rem;
   color: var(--accent);
   font-weight: 300;
}

.stat-label {
   font-size: .84rem;
   color: rgba(255, 255, 255, .5);
   margin-top: 8px;
   letter-spacing: .06em;
   text-transform: uppercase;
   font-size: .72rem;
}

.why-grid {
   display: grid;
   grid-template-columns: repeat(4, 1fr);
   gap: 24px;
}

.why-card {
   padding: 40px 32px;
   background: rgba(255, 255, 255, 0.03);
   backdrop-filter: blur(10px);
   -webkit-backdrop-filter: blur(10px);
   border: 1px solid rgba(255, 255, 255, 0.08);
   border-radius: var(--radius-xl);
   transition: all var(--transition);
   position: relative;
   overflow: hidden;
   box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.02);
}

.why-card:hover {
   background: rgba(255, 255, 255, 0.06);
   border-color: var(--accent);
   transform: translateY(-8px);
   box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), inset 0 0 30px rgba(25, 187, 157, 0.05);
}

.why-num-bg {
   position: absolute;
   top: -20px;
   right: -10px;
   font-family: var(--font-display);
   font-size: 8rem;
   font-weight: 700;
   color: rgba(255, 255, 255, 0.03);
   line-height: 1;
   pointer-events: none;
   user-select: none;
   transition: all var(--transition);
}

.why-card:hover .why-num-bg {
   color: rgba(25, 187, 157, 0.06);
   transform: scale(1.1);
}

.why-num {
   font-size: .72rem;
   letter-spacing: .14em;
   color: var(--accent);
   margin-bottom: 16px;
   font-weight: 500;
   display: none;
}

.why-card h3 {
   font-family: var(--font-display);
   font-size: 1.25rem;
   font-weight: 400;
   margin-bottom: 12px;
   color: #fff;
}

.why-card p {
   font-size: .88rem;
   color: rgba(255, 255, 255, .55);
   line-height: 1.65;
}

/* ============================================================
   PRICING
   ============================================================ */
.pricing {
   padding: 120px 0;
   background: var(--off-white);
   position: relative;
   overflow: hidden;
}

.pricing-toggle {
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 16px;
   margin-bottom: 52px;
}

.toggle-label {
   font-size: .92rem;
   font-weight: 500;
   color: var(--ink-light);
   transition: color var(--transition);
}

.toggle-label.active {
   color: var(--ink);
}

.toggle-switch {
   width: 52px;
   height: 28px;
   background: var(--mid);
   border-radius: 14px;
   position: relative;
   transition: background var(--transition);
}

.toggle-switch[aria-checked="true"] {
   background: var(--ink);
}

.toggle-thumb {
   position: absolute;
   top: 4px;
   left: 4px;
   width: 20px;
   height: 20px;
   background: #fff;
   border-radius: 50%;
   transition: transform var(--transition);
   box-shadow: 0 2px 6px rgba(0, 0, 0, .15);
}

.toggle-switch[aria-checked="true"] .toggle-thumb {
   transform: translateX(24px);
}

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

.price-card {
   background: rgba(255, 255, 255, 0.8);
   backdrop-filter: blur(10px);
   -webkit-backdrop-filter: blur(10px);
   border: 1px solid rgba(255, 255, 255, 0.5);
   border-radius: var(--radius-xl);
   padding: 48px 40px;
   position: relative;
   transition: all var(--transition);
   z-index: 1;
}

.price-card:hover {
   transform: translateY(-10px);
   box-shadow: var(--shadow-lg);
   border-color: var(--accent);
}

.price-card.popular {
   background: var(--grad-hero);
   border: none;
   color: #fff;
   transform: translateY(-8px);
   box-shadow: 0 20px 50px rgba(25, 187, 157, 0.25);
}

.price-card.popular:hover {
   transform: translateY(-14px);
}

.popular-badge {
   position: absolute;
   top: -14px;
   left: 50%;
   transform: translateX(-50%);
   background: var(--ink);
   color: var(--soft);
   font-size: .72rem;
   font-weight: 600;
   letter-spacing: .08em;
   text-transform: uppercase;
   padding: 5px 16px;
   border-radius: 20px;
}

.price-tier {
   font-size: .78rem;
   letter-spacing: .14em;
   text-transform: uppercase;
   font-weight: 500;
   margin-bottom: 16px;
   color: var(--ink-muted);
}

.price-card.popular .price-tier {
   color: rgba(255, 255, 255, .5);
}

.price-amount {
   display: flex;
   align-items: flex-start;
   gap: 2px;
   margin-bottom: 14px;
   line-height: 1;
}

.price-currency {
   font-size: 1.2rem;
   font-weight: 500;
   margin-top: 8px;
   color: var(--ink-muted);
}

.price-card.popular .price-currency {
   color: rgba(255, 255, 255, .6);
}

.price-val {
   font-family: var(--font-display);
   font-size: 3.2rem;
   font-weight: 300;
   color: var(--ink);
}

.price-card.popular .price-val {
   color: #fff;
}

.price-desc {
   font-size: .88rem;
   color: var(--ink-light);
   line-height: 1.6;
   margin-bottom: 24px;
}

.price-card.popular .price-desc {
   color: rgba(255, 255, 255, .6);
}

.price-features {
   margin-bottom: 28px;
   display: flex;
   flex-direction: column;
   gap: 10px;
}

.price-features li {
   font-size: .88rem;
   padding-left: 18px;
   position: relative;
   color: var(--ink-light);
}

.price-card.popular .price-features li {
   color: rgba(255, 255, 255, .7);
}

.price-features li::before {
   content: '';
   position: absolute;
   left: 0;
   top: 7px;
   width: 7px;
   height: 7px;
   border-radius: 50%;
   background: var(--accent);
}

.price-card.popular .btn-outline {
   border-color: rgba(255, 255, 255, .3);
   color: #fff;
}

.price-card.popular .btn-outline:hover {
   background: #fff;
   color: var(--ink);
   border-color: #fff;
}

/* ============================================================
   PORTFOLIO
   ============================================================ */
.portfolio {
   padding: 120px 0;
   background: var(--white);
   position: relative;
   overflow: hidden;
}

.portfolio-tabs {
   display: flex;
   justify-content: center;
   gap: 32px;
   margin-bottom: 60px;
   padding-bottom: 12px;
}

.tab-btn {
   background: none;
   border: none;
   font-family: var(--font-display);
   font-size: 1.1rem;
   font-weight: 300;
   color: var(--ink-muted);
   cursor: pointer;
   padding: 4px 10px;
   position: relative;
   transition: color var(--transition);
}

.tab-btn.active {
   color: var(--white);
}

.tab-btn.active::after {
   content: '';
   position: absolute;
   bottom: -13px;
   left: 0;
   width: 100%;
   height: 2px;
   background: var(--accent);
}

.portfolio-grid {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 24px;
   transition: opacity .4s ease, transform .4s ease;
}

.portfolio-grid.hidden {
   display: none;
   opacity: 0;
   transform: translateY(20px);
}

/* Swiper specific overrides for Logo & Website */
.logo-swiper,
.website-swiper {
   padding-bottom: 60px !important;
}

.logo-swiper .portfolio-item {
   height: 100%;
}

.website-swiper .portfolio-item {
   aspect-ratio: 16/10;
   height: auto;
}

.portfolio-item {
   position: relative;
   border-radius: var(--radius-lg);
   overflow: hidden;
   background: var(--off-white);
   aspect-ratio: 1/1;
   cursor: pointer;
}

.portfolio-thumb {
   width: 100%;
   height: 100%;
   transition: transform .8s cubic-bezier(.16, 1, .3, 1);
}

.portfolio-item:hover .portfolio-thumb {
   transform: scale(1.12);
   filter: brightness(1.1) saturate(1.2);
}

.portfolio-item {
   transition: all 0.4s cubic-bezier(.16, 1, .3, 1);
}

.portfolio-item:hover {
   transform: translateY(-8px);
   box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}


.logo-mock {
   width: 100%;
   height: 100%;
   display: none;
   align-items: center;
   justify-content: center;
}

.logo-mock svg {
   width: 120px;
   height: 80px;
}

/* Swiper Controls */
.swiper-button-next,
.swiper-button-prev {
   color: var(--accent) !important;
   background: rgba(255, 255, 255, 0.9);
   width: 44px !important;
   height: 44px !important;
   border-radius: 50% !important;
   box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.swiper-button-next::after,
.swiper-button-prev::after {
   font-size: 1.2rem !important;
   font-weight: 700 !important;
}

.swiper-pagination-bullet-active {
   background: var(--accent) !important;
}

/* ============================================================
   PROCESS (Modern Redesign)
   ============================================================ */
.process {
   padding: 120px 0;
   background: var(--off-white);
   position: relative;
   overflow: hidden;
}

.process-grid-modern {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 30px;
   max-width: 1200px;
   margin: 0 auto;
}

.process-card {
   position: relative;
   padding: 60px 40px;
   background: #fff;
   border-radius: var(--radius-xl);
   box-shadow: var(--shadow-sm);
   transition: all .5s cubic-bezier(0.4, 0, 0.2, 1);
   border: 1px solid rgba(0, 0, 0, 0.03);
   overflow: hidden;
   z-index: 1;
}

.process-card:hover {
   transform: translateY(-12px);
   box-shadow: var(--shadow-lg);
   border-color: var(--accent-light);
}

.process-card-icon {
   width: 64px;
   height: 64px;
   background: var(--red-deep);
   border-radius: 16px;
   display: grid;
   place-items: center;
   color: #fff;
   margin-bottom: 24px;
   transition: transform .5s ease;
}

.process-card:hover .process-card-icon {
   transform: rotate(10deg) scale(1.1);
   background: var(--accent);
}

.process-card-icon svg {
   width: 28px;
   height: 28px;
}

.process-card-num {
   display: inline-block;
   padding: 4px 12px;
   background: var(--soft);
   color: var(--accent-dark);
   font-size: .7rem;
   font-weight: 700;
   border-radius: 99px;
   margin-bottom: 16px;
   letter-spacing: 1px;
}

.process-card-content h3 {
   font-family: var(--font-display);
   font-size: 1.65rem;
   font-weight: 400;
   margin-bottom: 14px;
   color: var(--ink);
}

.process-card-content p {
   font-size: .95rem;
   line-height: 1.6;
   color: var(--ink-muted);
}

.process-card-bg-num {
   position: absolute;
   bottom: -20px;
   right: -10px;
   font-size: 8rem;
   font-weight: 800;
   color: rgba(0, 0, 0, 0.03);
   z-index: -1;
   transition: all .5s ease;
   font-family: var(--font-body);
}

.process-card:hover .process-card-bg-num {
   color: rgba(239, 68, 68, 0.06);
   transform: scale(1.1) rotate(-5deg);
}

/* Specific Grid Layouts */
.process-card:nth-child(4),
.process-card:nth-child(5) {
   grid-column: span 1.5;
   /* This doesn't exist in standard grid, but we'll use auto or span 1 for safety */
}

@media (min-width: 1024px) {
   .process-card:nth-child(4) {
      grid-column: 1 / 3;
   }

   .process-card:nth-child(5) {
      grid-column: 3 / 4;
   }
}

@media (max-width: 992px) {
   .process-grid-modern {
      grid-template-columns: repeat(2, 1fr);
   }
}

@media (max-width: 640px) {
   .process-grid-modern {
      grid-template-columns: 1fr;
   }
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
   padding: 120px 0;
   background: var(--white);
   position: relative;
   overflow: hidden;
}

.about-inner {
   display: grid;
   grid-template-columns: 480px 1fr;
   gap: 100px;
   align-items: center;
}

.about-visual {
   position: relative;
   display: flex;
   flex-direction: column;
   align-items: center;
   gap: 32px;
}

/* Agency Showcase Styles */
.agency-showcase {
   position: relative;
   width: 100%;
   height: 420px;
   border-radius: var(--radius-xl);
   overflow: hidden;
   box-shadow: var(--shadow-xl);
}

.showcase-item {
   position: absolute;
   inset: 0;
   opacity: 0;
   transform: translateY(20px);
   transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
   display: flex;
   align-items: center;
   justify-content: center;
   background: linear-gradient(135deg, var(--off-white) 0%, var(--white) 100%);
}

.showcase-item.active {
   opacity: 1;
   transform: translateY(0);
}

.showcase-content {
    text-align: center;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.showcase-content h3 {
   font-family: var(--font-display);
   font-size: 1.5rem;
   font-weight: 400;
   margin: 24px 0 8px;
   color: var(--ink);
}

.showcase-content p {
   color: var(--ink-muted);
   font-size: 1rem;
   margin: 0;
}

/* Logo Grid */
.logo-grid {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 20px;
   margin-bottom: 32px;
   max-width: 280px;
}

.logo-item {
   width: 80px;
   height: 80px;
   border-radius: var(--radius-lg);
   background-size: cover !important;
   background-position: center !important;
   transform: rotate(-5deg);
   transition: transform 0.3s ease;
   box-shadow: var(--shadow-sm);
   border: 2px solid var(--white);
}

.logo-item:nth-child(even) {
   transform: rotate(5deg);
}

.logo-item:hover {
   transform: rotate(0deg) scale(1.05);
   box-shadow: var(--shadow-md);
}

/* Website Mockup */
.website-mockup {
   margin-bottom: 32px;
}

.browser-frame {
   width: 320px;
   height: 200px;
   background: #fff;
   border-radius: var(--radius-lg);
   box-shadow: var(--shadow-lg);
   overflow: hidden;
}

.browser-header {
   height: 32px;
   background: #f1f3f4;
   display: flex;
   align-items: center;
   padding: 0 12px;
   border-bottom: 1px solid #e0e0e0;
}

.browser-dots {
   display: flex;
   gap: 6px;
}

.browser-dots span {
   width: 10px;
   height: 10px;
   border-radius: 50%;
   background: #d0d0d0;
}

.browser-dots span:nth-child(1) {
   background: #ff5f57;
}

.browser-dots span:nth-child(2) {
   background: #ffbd2e;
}

.browser-dots span:nth-child(3) {
   background: #28ca42;
}

.browser-content {
   height: calc(100% - 32px);
   position: relative;
}

.website-preview {
   width: 100%;
   height: 100%;
   background-size: cover !important;
   background-position: center !important;
}

/* Showcase Switcher */
.showcase-switcher {
   display: flex;
   gap: 12px;
   background: var(--off-white);
   padding: 6px;
   border-radius: var(--radius-lg);
   box-shadow: var(--shadow-sm);
}

.switcher-btn {
   padding: 12px 24px;
   border: none;
   background: transparent;
   color: var(--ink-muted);
   font-family: var(--font-body);
   font-size: 0.9rem;
   font-weight: 500;
   border-radius: var(--radius-md);
   cursor: pointer;
   transition: all 0.3s ease;
   position: relative;
}

.switcher-btn.active {
   background: var(--accent);
   color: white;
   box-shadow: var(--shadow-sm);
}

.switcher-btn:hover:not(.active) {
   color: var(--ink);
   background: rgba(0, 0, 0, 0.05);
}

/* Agency Stats */
.agency-stats {
   display: none;
   grid-template-columns: repeat(3, 1fr);
   gap: 24px;
   margin: 32px 0;
   padding: 24px;
   background: var(--off-white);
   border-radius: var(--radius-xl);
}

.stat-item {
   text-align: center;
}

.stat-number {
   font-family: var(--font-display);
   font-size: 2rem;
   font-weight: 400;
   color: var(--accent);
   margin-bottom: 4px;
}

.stat-label {
   font-size: 0.85rem;
   color: var(--ink-muted);
   text-transform: uppercase;
   letter-spacing: 0.05em;
}

/* Agency Services */
.agency-services {
   margin: 32px 0;
}

.service-item {
   display: flex;
   gap: 16px;
   padding: 20px 0;
   border-bottom: 1px solid var(--mid);
}

.service-item:last-child {
   border-bottom: none;
}

.service-icon {
   width: 48px;
   height: 48px;
   background: var(--accent);
   border-radius: var(--radius-lg);
   display: grid;
   place-items: center;
   color: white;
   flex-shrink: 0;
}

.service-icon svg {
   width: 24px;
   height: 24px;
}

.service-content h4 {
   font-family: var(--font-display);
   font-size: 1.1rem;
   font-weight: 400;
   margin-bottom: 6px;
   color: var(--ink);
}

.service-content p {
   color: var(--ink-muted);
   font-size: 0.9rem;
   line-height: 1.5;
   margin: 0;
}

/* About CTA */
.about-cta {
   display: flex;
   gap: 16px;
   margin-top: 32px;
}

.about-canvas {
   position: relative;
   width: 420px;
   height: 420px;
   border-radius: var(--radius-xl);
   background: var(--grad-glass);
   box-shadow: var(--shadow-lg);
   border: 1px solid rgba(0, 0, 0, .06);
   overflow: hidden;
}

.about-mono {
   position: absolute;
   inset: auto 0 16px 0;
   margin: 0 auto;
   width: max-content;
   padding: 8px 14px;
   border-radius: 24px;
   background: rgba(0, 0, 0, .7);
   color: #fff;
   font-family: var(--font-display);
   letter-spacing: .16em;
   font-size: 1rem;
}

.about-dot {
   position: absolute;
   width: 14px;
   height: 14px;
   border-radius: 50%;
   background: var(--accent);
   box-shadow: 0 0 30px var(--teal-glow);
   transform: translate(0, 0);
}

.about-dot:nth-child(1) {
   top: 18%;
   left: 22%;
}

.about-dot:nth-child(2) {
   top: 32%;
   left: 68%;
}

.about-dot:nth-child(3) {
   top: 54%;
   left: 36%;
}

.about-dot:nth-child(4) {
   top: 72%;
   left: 58%;
}

.about-dot:nth-child(5) {
   top: 42%;
   left: 18%;
}

.about-dot:nth-child(6) {
   top: 18%;
   left: 78%;
}

.about-dot:nth-child(7) {
   top: 64%;
   left: 22%;
}

.about-dot:nth-child(8) {
   top: 78%;
   left: 82%;
}

.switcher-chips {
   display: flex;
   gap: 8px;
   margin: 10px 0 18px;
}

.chip {
   padding: 9px 18px;
   border-radius: 24px;
   font-size: .86rem;
   background: var(--soft);
   color: var(--ink);
   border: 1px solid var(--mid);
   transition: all var(--transition);
}

.chip:hover {
   background: #fff;
   transform: translateY(-2px);
   box-shadow: var(--shadow-md);
}

.chip.active {
   background: var(--ink);
   color: #fff;
   border-color: var(--ink);
}

.switcher-panels {
   position: relative;
   min-height: 150px;
}

.switch-pane {
   display: none;
   opacity: 0;
   transform: translateY(6px);
   transition: opacity .3s ease, transform .3s ease;
}

.switch-pane.active {
   display: block;
   opacity: 1;
   transform: translateY(0);
}

.switch-list {
   display: grid;
   gap: 10px;
}

.switch-list li strong {
   display: block;
   font-weight: 600;
   color: var(--ink);
   font-size: .95rem;
}

.switch-list li span {
   display: block;
   color: var(--ink-muted);
   font-size: .84rem;
}

.about-sub {
   font-size: .9rem;
   color: var(--ink-muted);
}

.about-dial {
   position: relative;
   width: 360px;
   height: 360px;
   border-radius: 50%;
   background: #fff;
   border: 1px solid var(--mid);
   box-shadow: var(--shadow-lg);
   display: grid;
   place-items: center;
   overflow: hidden;
}

.dial-center {
   width: 110px;
   height: 110px;
   border-radius: 50%;
   background: var(--ink);
   color: #fff;
   display: grid;
   place-items: center;
   font-family: var(--font-display);
   font-size: 1.6rem;
   letter-spacing: .18em;
   box-shadow: var(--shadow-glow);
}

.dial-seg {
   position: absolute;
   padding: 10px 14px;
   background: var(--soft);
   border: 1px solid var(--mid);
   border-radius: 24px;
   font-size: .82rem;
   color: var(--ink);
   transition: all var(--transition);
}

.dial-seg:hover {
   background: #fff;
   transform: translateY(-2px);
   box-shadow: var(--shadow-md);
}

.dial-seg.active {
   background: var(--ink);
   color: #fff;
   border-color: var(--ink);
}

.dial-seg[data-key="craft"] {
   top: 18px;
   left: 50%;
   transform: translateX(-50%);
}

.dial-seg[data-key="strategy"] {
   right: 18px;
   top: 50%;
   transform: translateY(-50%);
}

.dial-seg[data-key="digital"] {
   bottom: 18px;
   left: 50%;
   transform: translateX(-50%);
}

.dial-seg[data-key="partnership"] {
   left: 18px;
   top: 50%;
   transform: translateY(-50%);
}

.about-panels {
   display: grid;
   gap: 14px;
   margin: 16px 0 28px;
}

.about-pane {
   display: none;
   padding: 18px 20px;
   border: 1px solid var(--mid);
   border-radius: var(--radius-lg);
   background: var(--soft);
   transition: all var(--transition);
   opacity: 0;
   transform: translateY(6px);
}

.about-pane strong {
   display: block;
   font-size: .95rem;
   font-weight: 600;
   color: var(--ink);
   margin-bottom: 4px;
}

.about-pane span {
   display: block;
   font-size: .84rem;
   color: var(--ink-muted);
   line-height: 1.6;
}

.about-pane.active {
   display: block;
   opacity: 1;
   transform: translateY(0);
   background: #fff;
   box-shadow: var(--shadow-md);
}

.about-panel {
   position: relative;
   width: 360px;
   height: 440px;
   background: #fff;
   border: 1px solid var(--mid);
   border-radius: var(--radius-xl);
   box-shadow: var(--shadow-lg);
   padding: 32px;
   display: grid;
   place-items: center;
   overflow: hidden;
}

.about-panel::before,
.about-panel::after {
   content: '';
   position: absolute;
   left: 24px;
   right: 24px;
   height: 1px;
   background: linear-gradient(to right, rgba(200, 168, 122, .6), rgba(200, 168, 122, .1));
}

.about-panel::before {
   top: 24px;
}

.about-panel::after {
   bottom: 24px;
}

.panel-eyebrow {
   position: absolute;
   top: 36px;
   font-size: .72rem;
   letter-spacing: .18em;
   text-transform: uppercase;
   color: var(--ink-muted);
}

.panel-mark {
   font-family: var(--font-display);
   font-size: 4rem;
   font-weight: 300;
   letter-spacing: .24em;
   color: var(--ink);
}

.panel-caption {
   position: absolute;
   bottom: 36px;
   font-size: .8rem;
   color: var(--ink-muted);
   letter-spacing: .06em;
}

.about-art {
   position: relative;
   width: 280px;
   height: 280px;
}

.about-ring {
   position: absolute;
   border-radius: 50%;
   border: 1.5px solid;
}

.ring-1 {
   inset: 0;
   border-color: rgba(200, 168, 122, .4);
   animation: ringRotate 20s linear infinite;
}

.ring-2 {
   inset: 24px;
   border-color: rgba(200, 168, 122, .25);
   animation: ringRotate 30s linear infinite reverse;
}

.ring-3 {
   inset: 50px;
   border-color: rgba(200, 168, 122, .15);
   animation: ringRotate 15s linear infinite;
}

.about-center {
   position: absolute;
   inset: 70px;
   background: var(--ink);
   border-radius: 50%;
   display: flex;
   flex-direction: column;
   align-items: center;
   justify-content: center;
   color: #fff;
}

.about-year {
   font-size: .68rem;
   letter-spacing: .12em;
   text-transform: uppercase;
   color: var(--accent);
   margin-bottom: 4px;
}

.about-label {
   font-family: var(--font-display);
   font-size: 1.4rem;
   font-weight: 300;
   letter-spacing: .12em;
}

.about-card-float {
   position: absolute;
   bottom: 30px;
   right: 0;
   background: #fff;
   border: 1px solid var(--mid);
   border-radius: var(--radius);
   padding: 14px 18px;
   display: none;
   align-items: center;
   gap: 12px;
   box-shadow: var(--shadow-md);
}

.about-card-float>div:last-child {
   display: flex;
   flex-direction: column;
   gap: 2px;
}

.about-card-float strong {
   font-size: .9rem;
   font-weight: 600;
}

.about-card-float span {
   font-size: .76rem;
   color: var(--ink-muted);
}

.float-avatar {
   width: 40px;
   height: 40px;
   background: var(--ink);
   color: var(--accent);
   border-radius: 50%;
   display: grid;
   place-items: center;
   font-size: .78rem;
   font-weight: 700;
   letter-spacing: .08em;
}

.about-content p {
   font-size: .96rem;
   line-height: 1.75;
   color: var(--ink-light);
   margin-bottom: 20px;
}

.about-lead {
   font-size: 1.05rem;
   line-height: 1.8;
   color: var(--ink-light);
   margin-bottom: 24px;
}

.about-values {
   display: flex;
   flex-direction: column;
   gap: 14px;
   margin: 22px 0 32px;
}

.value-item {
   display: flex;
   align-items: center;
   gap: 12px;
   padding: 16px 18px;
   border: 1px solid var(--mid);
   border-radius: var(--radius-lg);
   background: var(--soft);
   transition: all var(--transition);
}

.value-item:hover {
   background: #fff;
   box-shadow: var(--shadow-md);
   transform: translateY(-3px);
}

.value-icon {
   width: 36px;
   height: 36px;
   background: var(--ink);
   color: var(--accent);
   border-radius: 10px;
   display: grid;
   place-items: center;
   flex-shrink: 0;
}

.value-icon svg {
   width: 18px;
   height: 18px;
}

.value-text strong {
   font-size: .95rem;
   font-weight: 600;
   color: var(--ink);
}

.value-text span {
   display: block;
   font-size: .82rem;
   color: var(--ink-muted);
   line-height: 1.5;
}

.about-stats {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 24px;
   margin: 8px 0 28px;
}

.about-stats .stat-item {
   text-align: left;
}

.about-stats .stat-label {
   color: var(--ink-muted);
   letter-spacing: .06em;
   text-transform: uppercase;
   font-size: .72rem;
   margin-top: 8px;
}

.about-pillars {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 24px;
   margin: 40px 0 44px;
}

.pillar {
   display: flex;
   flex-direction: column;
   gap: 12px;
   padding: 24px;
   background: var(--soft);
   border-radius: var(--radius-lg);
   transition: all var(--transition);
}

.pillar:hover {
   background: var(--white);
   box-shadow: var(--shadow-md);
   transform: translateY(-5px);
}

.pillar-icon {
   width: 40px;
   height: 40px;
   background: var(--ink);
   color: var(--accent);
   border-radius: 10px;
   display: grid;
   place-items: center;
   margin-bottom: 4px;
}

.pillar-icon svg {
   width: 20px;
   height: 20px;
}

.pillar strong {
   font-size: 0.95rem;
   font-weight: 600;
   color: var(--ink);
}

.pillar span {
   font-size: 0.8rem;
   color: var(--ink-muted);
   line-height: 1.5;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
   padding: 140px 0;
   position: relative;
   overflow: hidden;
   text-align: center;
   background: url(images/cta-bg.webp) center center / cover no-repeat;
}

.cta-bg {
   position: absolute;
   inset: 0;
   background: linear-gradient(135deg, #1a1714 0%, #2d2420 50%, #1a1714 100%);
   display: none;
}

.cta-bg::before {
   content: '';
   position: absolute;
   inset: 0;
   background:
      radial-gradient(circle at 30% 50%, rgba(200, 168, 122, .2) 0%, transparent 50%),
      radial-gradient(circle at 70% 50%, rgba(200, 168, 122, .15) 0%, transparent 50%);
}

.cta-glass-card {
   position: relative;
   max-width: 900px;
   margin: 0 auto;
   padding: 80px 40px;
   background: var(--ink);
   backdrop-filter: blur(25px);
   -webkit-backdrop-filter: blur(25px);
   border: 1px solid rgba(255, 255, 255, 0.1);
   border-radius: var(--radius-xl);
   overflow: hidden;
   z-index: 1;
   box-shadow: 0 40px 100px rgba(0, 0, 0, 0.4);
}

.cta-glass-card::after {
   content: '';
   position: absolute;
   top: 0;
   left: -150%;
   width: 100%;
   height: 100%;
   background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
   transform: skewX(-25deg);
   animation: shimmer 8s infinite;
}

@keyframes shimmer {
   0% {
      left: -150%;
   }

   20% {
      left: 150%;
   }

   100% {
      left: 150%;
   }
}

.cta-inner {
   position: relative;
   z-index: 2;
}

.cta-inner h2 {
   font-family: var(--font-display);
   font-size: clamp(2.4rem, 5vw, 3.8rem);
   font-weight: 300;
   color: #fff;
   line-height: 1.1;
   margin-bottom: 24px;
}

.cta-inner h2 em {
   font-style: italic;
   color: var(--accent);
}

.cta-inner p {
   font-size: 1.1rem;
   color: rgba(255, 255, 255, 0.6);
   max-width: 600px;
   margin: 0 auto 40px;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
   padding: 120px 0;
   background: var(--off-white);
   position: relative;
   overflow: hidden;
}

.contact-inner {
   display: grid;
   grid-template-columns: 360px 1fr;
   gap: 80px;
   align-items: start;
}

.contact-item {
   display: flex;
   gap: 16px;
   align-items: flex-start;
   margin-bottom: 32px;
}

.contact-icon {
   width: 44px;
   height: 44px;
   background: var(--ink);
   border-radius: 10px;
   display: grid;
   place-items: center;
   color: #fff;
   flex-shrink: 0;
}

.contact-icon svg {
   width: 20px;
   height: 20px;
}

.contact-item>div:last-child {
   display: flex;
   flex-direction: column;
   gap: 4px;
   padding-top: 4px;
}

.contact-item strong {
   font-size: .9rem;
   font-weight: 600;
}

.contact-item span {
   font-size: .88rem;
   color: var(--ink-muted);
}

.contact-hours {
   display: none;
   padding-top: 24px;
   border-top: 1px solid var(--mid);
}

.contact-hours p {
   font-size: .88rem;
   color: var(--ink-muted);
   line-height: 1.8;
}

.contact-hours strong {
   color: var(--ink);
}

.contact-form-wrap {
   background: rgba(255, 255, 255, 0.7);
   backdrop-filter: blur(20px);
   -webkit-backdrop-filter: blur(20px);
   border: 1px solid rgba(255, 255, 255, 0.4);
   border-radius: var(--radius-xl);
   padding: 40px;
   box-shadow: var(--shadow-lg);
}

.form-row {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 0 24px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
   padding: 80px 0 40px;
   background: var(--ink);
   color: rgba(255, 255, 255, .65);
}

.footer-grid {
   display: grid;
   grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
   gap: 48px;
   margin-bottom: 56px;
}

.footer-brand .nav-logo {
   color: #fff;
   margin-bottom: 16px;
   display: inline-flex;
}

.footer-brand .nav-logo img {
   filter: saturate(0) invert(1);
}

.footer-brand .logo-mark {
   background: var(--accent);
   color: var(--ink);
}

.footer-brand p {
   font-size: .88rem;
   line-height: 1.7;
   max-width: 280px;
   margin-bottom: 24px;
}

.social-links {
   display: flex;
   gap: 12px;
}

.social-link {
   width: 38px;
   height: 38px;
   border: 1px solid rgba(255, 255, 255, .15);
   border-radius: 8px;
   display: none;
   place-items: center;
   color: rgba(255, 255, 255, .5);
   transition: all var(--transition);
}

.social-link svg {
   width: 18px;
   height: 18px;
}

.social-link:hover {
   border-color: var(--accent);
   color: var(--accent);
   transform: translateY(-3px) scale(1.1);
   background: rgba(25, 187, 157, 0.1);
}

.footer-col h4 {
   font-size: .78rem;
   letter-spacing: .14em;
   text-transform: uppercase;
   color: #fff;
   font-weight: 600;
   margin-bottom: 20px;
}

.footer-col ul {
   display: flex;
   flex-direction: column;
   gap: 12px;
}

.footer-col a {
   font-size: .88rem;
   color: rgba(255, 255, 255, .5);
   transition: color var(--transition);
}

.footer-col a:hover {
   color: var(--accent);
   transform: translateX(4px);
   display: inline-block;
}

.footer-tagline {
   font-size: .84rem;
   line-height: 1.6;
   margin-top: 16px;
   color: rgba(255, 255, 255, .35);
   display: none;
}

.footer-bottom {
   border-top: 1px solid rgba(255, 255, 255, .08);
   padding-top: 32px;
   display: flex;
   justify-content: space-between;
   align-items: center;
   flex-wrap: wrap;
   gap: 12px;
}

.footer-bottom p {
   font-size: .82rem;
}

.footer-legal {
   display: flex;
   gap: 24px;
}

.footer-legal a {
   font-size: .82rem;
   color: rgba(255, 255, 255, .35);
   transition: color var(--transition);
}

.footer-legal a:hover {
   color: var(--accent);
}


/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes blobFloat {

   0%,
   100% {
      transform: translate(0, 0) scale(1);
   }

   33% {
      transform: translate(-20px, -30px) scale(1.05);
   }

   66% {
      transform: translate(10px, 20px) scale(0.96);
   }
}

@keyframes ringRotate {
   to {
      transform: rotate(360deg);
   }
}

@keyframes spin {
   to {
      transform: rotate(360deg);
   }
}

@keyframes fadeIn {
   from {
      opacity: 0;
      transform: translateY(10px);
   }

   to {
      opacity: 1;
      transform: translateY(0);
   }
}

@keyframes counterUp {
   from {
      opacity: 0;
      transform: translateY(8px);
   }

   to {
      opacity: 1;
      transform: translateY(0);
   }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
   .hero-inner {
      grid-template-columns: 1fr;
      gap: 48px;
   }

   .hero-form-wrap {
      max-width: 540px;
   }

   .about-inner {
      grid-template-columns: 1fr;
      gap: 64px;
   }

   .about-visual {
      height: auto;
      gap: 24px;
   }

   .agency-showcase {
      height: 360px;
   }

   .logo-grid {
      max-width: 240px;
   }

   .logo-item {
      width: 70px;
      height: 70px;
   }

   .browser-frame {
      width: 280px;
      height: 180px;
   }

   .agency-stats {
      grid-template-columns: 1fr;
      gap: 16px;
      text-align: left;
   }

   .stat-item {
      display: flex;
      align-items: center;
      gap: 12px;
   }

   .stat-number {
      font-size: 1.5rem;
      margin-bottom: 0;
   }

   .service-item {
      padding: 16px 0;
   }

   .service-icon {
      width: 40px;
      height: 40px;
   }

   .service-icon svg {
      width: 20px;
      height: 20px;
   }

   .about-cta {
      flex-direction: column;
      gap: 12px;
   }

   .about-cta .btn {
      width: 100%;
      text-align: center;
   }

   .contact-inner {
      grid-template-columns: 1fr;
      gap: 48px;
   }

   .footer-grid {
      grid-template-columns: 1fr 1fr;
      gap: 36px;
   }

   .why-grid {
      grid-template-columns: repeat(2, 1fr);
   }

   .stats-row {
      grid-template-columns: repeat(2, 1fr);
   }
}

@media (max-width: 768px) {

   .nav-links,
   .nav-cta {
      display: none;
   }

   .nav-toggle {
      display: flex;
   }

   .nav-links.open {
      display: flex;
      flex-direction: column;
      gap: 0;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: rgba(255, 255, 255, .98);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      padding: 0;
      box-shadow: var(--shadow-lg);
      border-top: 1px solid var(--mid);
      border-bottom: 1px solid var(--mid);
      z-index: 99;
      max-height: calc(100vh - 80px);
      overflow-y: auto;
      transform: translateY(-10px);
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
   }

   .nav-links.open.active {
      transform: translateY(0);
      opacity: 1;
      visibility: visible;
   }

   .nav-links.open .nav-link {
      padding: 18px 24px;
      border-bottom: 1px solid var(--soft);
      font-size: 1rem;
      display: block;
      transition: background-color 0.2s ease;
      position: relative;
      min-height: 56px;
      display: flex;
      align-items: center;
   }

   .nav-links.open .nav-link::after {
      bottom: 8px;
      left: 24px;
      right: 24px;
      width: auto;
   }

   .nav-links.open .nav-link:hover {
      background-color: rgba(245, 245, 245, 0.5);
   }

   .nav-links.open .nav-link:last-child {
      border-bottom: none;
   }

   .nav-links.open+.nav-cta {
      display: block;
      position: relative;
      bottom: auto;
      left: 24px;
      right: 24px;
      top: calc(100% + 24px);
      text-align: center;
      z-index: 99;
      margin-top: 16px;
      margin-bottom: 24px;
   }

   .nav-inner {
      position: relative;
   }

   .mobile-menu-overlay {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0, 0, 0, 0.2);
      z-index: 98;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s ease;
   }

   .mobile-menu-overlay.active {
      opacity: 1;
      visibility: visible;
   }

   .services-grid {
      grid-template-columns: 1fr;
   }

   .pricing-grid {
      grid-template-columns: 1fr;
   }

   .price-card.popular {
      transform: none;
   }

   .price-card.popular:hover {
      transform: translateY(-4px);
   }

   .portfolio-grid {
      grid-template-columns: repeat(2, 1fr);
   }

   .footer-grid {
      grid-template-columns: 1fr;
   }

   .hero-headline {
      font-size: 2.6rem;
   }

   .form-row {
      grid-template-columns: 1fr;
   }
}

@media (max-width: 540px) {
   .nav-logo img {
      width: 100px;
   }

   .nav-inner {
      padding: 0 16px;
   }

   .nav-toggle {
      gap: 4px;
   }

   .nav-toggle span {
      width: 20px;
      height: 2px;
   }

   .nav-links.open {
      max-height: calc(100vh - 70px);
   }

   .nav-links.open .nav-link {
      padding: 16px 16px;
      font-size: 0.95rem;
   }

   .nav-links.open+.nav-cta {
      left: 16px;
      right: 16px;
   }

   .portfolio-grid {
      grid-template-columns: 1fr;
   }

   .stats-row {
      grid-template-columns: 1fr 1fr;
   }

   /* Mobile About Section Styles */
   .about {
      padding: 80px 0;
   }

   .about-inner {
      gap: 48px;
   }

   .agency-showcase {
      height: 320px;
   }

   .showcase-content {
      padding: 24px;
   }

   .logo-grid {
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
      max-width: 200px;
   }

   .logo-item {
      width: 60px;
      height: 60px;
   }

   .browser-frame {
      width: 240px;
      height: 160px;
   }

   .showcase-switcher {
      flex-direction: column;
      gap: 8px;
   }

   .switcher-btn {
      padding: 10px 20px;
      font-size: 0.85rem;
   }

   .section-title {
      font-size: 1.8rem;
   }

   .about-lead {
      font-size: 1rem;
   }

   .agency-stats {
      padding: 16px;
      gap: 12px;
   }

   .stat-number {
      font-size: 1.25rem;
   }

   .stat-label {
      font-size: 0.75rem;
   }

   .service-item {
      gap: 12px;
      padding: 16px 0;
   }

   .service-icon {
      width: 36px;
      height: 36px;
   }

   .service-icon svg {
      width: 18px;
      height: 18px;
   }

   .service-content h4 {
      font-size: 1rem;
   }

   .service-content p {
      font-size: 0.85rem;
   }

   .why-grid {
      grid-template-columns: 1fr;
   }

   .hero-actions {
      flex-direction: column;
   }

   .hero-actions .btn {
      text-align: center;
   }
}


.intl-tel-input .selected-flag {
 padding: 0 6px 0px 8px !important;
}