
    :root {
      /* Muted, Sophisticated Palette */
      --white: #ffffff;
      --off-white: #f9fafb;
      --light-gray: #eef2f6;
      --text-dark: #1e293b;
      --text-gray: #64748b;
      --text-light: #94a3b8;
      --color:#0f1217;
      --background: #0b0d10;
      
      /* Brand Colors - Muted & Professional */
      --brand-primary: #5b7c99;   /* Muted Blue */
      --brand-secondary: #8b9d77; /* Sage Green */
      --brand-accent: #c9a86c;    /* Muted Gold */
      --brand-warm: #d4a574;      /* Warm Sand */
      
      --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
      --motion-fast: 0.5s;
      --motion-medium: 1s;
      --motion-slow: 2s;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Montserrat', sans-serif;
      background: var(--white);
      color: var(--text-dark);
      line-height: 1.7;
      overflow-x: hidden;
      font-weight: 400;
    }

    /* h1, h2, h3, h4, h5, h6 {
      font-family: 'Montserrat', sans-serif;
      font-weight: 600;
      line-height: 1.3;
      color: var(--text-dark);
    } */

    /* Scroll Progress */
    .scroll-progress {
      position: fixed;
      top: 0;
      left: 0;
      height: 2px;
      background: linear-gradient(90deg, var(--brand-primary), var(--brand-accent));
      z-index: 9999;
      width: 0%;
      transition: width 0.1s;
      opacity: 0.7;
    }

    /* Header */
    .site-header {
      position: fixed;
      top: 0;
      width: 100%;
      z-index: 999;
      background: rgba(255, 255, 255, 0.92);
      backdrop-filter: blur(10px);
      transition: all var(--motion-fast);
    }

    .nav {
      max-width: 1400px;
      margin: auto;
      padding: 1.2rem 2rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .nav-logo {
      font-weight: 700;
      font-size: 1.2rem;
      letter-spacing: -0.01em;
      display: flex;
      align-items: center;
      gap: 0.5rem;
      color: var(--text-dark);
      text-decoration: none;
    }

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

    .nav-logo span {
      color: var(--brand-primary);
    }

    .nav-links {
      display: flex;
      gap: 2.5rem;
      list-style: none;
    }

    .nav-links a {
      color: var(--text-gray);
      text-decoration: none;
      font-weight: 500;
      font-size: 0.9rem;
      transition: color var(--motion-fast);
      position: relative;
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -3px;
      left: 0;
      width: 0;
      height: 1px;
      background: var(--brand-primary);
      transition: width var(--motion-fast) var(--ease-out);
    }

    .nav-links a:hover {
      color: var(--brand-primary);
    }

    .nav-links a:hover::after {
      width: 100%;
    }

    /* Hero - With Background Image */
    .hero {
      min-height: 100vh;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      padding: 10rem 2rem 6rem;
      background: var(--background);
    }

    .hero-bg-image {
      position: absolute;
      inset: 0;
      background: url('https://images.unsplash.com/photo-1561070791-2526d30994b5?w=1920&q=80') center/cover;
      opacity: 0.06;
      z-index: 0;
      background-attachment: fixed;
    }

    .hero h1 {
      font-size: clamp(2.3rem, 5vw, 4.2rem);
      color: var(--off-white);
      margin-bottom: 1.5rem;
      font-weight: 700;
    }
    .hero p {
      color: var(--off-white);
      font-size: clamp(1rem, 2vw, 1.25rem);
      max-width: 700px;
      margin: 0 auto 2.5rem;
      line-height: 1.9;
      font-weight: 600;
    }
    .hero em {
      color: var(--brand-secondary);
      font-style: normal;
      font-size: 32px;
      font-weight: 600;
    }   
    .hero strong {
      color: var(--brand-primary);
      font-weight: 700;
    }

    /* Animated brand color blobs */
    .brand-blob {
      position: absolute;
      border-radius: 50%;
      filter: blur(80px);
      opacity: 0.12;
      animation: blobFloat var(--motion-slow) ease-in-out infinite;
      z-index: 0;
    }

    .blob-1 {
      width: 600px;
      height: 600px;
      background: var(--brand-primary);
      top: -15%;
      right: -10%;
      animation-delay: 0s;
    }

    .blob-2 {
      width: 450px;
      height: 450px;
      background: var(--brand-accent);
      bottom: -10%;
      left: -5%;
      animation-delay: -1s;
    }

    .blob-3 {
      width: 350px;
      height: 350px;
      background: var(--brand-secondary);
      top: 45%;
      left: 15%;
      animation-delay: -2s;
      opacity: 0.08;
    }

    @keyframes blobFloat {
      0%, 100% { transform: translate(0, 0) scale(1); }
      33% { transform: translate(40px, -30px) scale(1.08); }
      66% { transform: translate(-30px, 40px) scale(0.92); }
    }

    /* Animated brand marks */
    .brand-mark {
      position: absolute;
      opacity: 0.15;
      pointer-events: none;
      z-index: 1;
    }

    .mark-1 {
      top: 20%;
      left: 8%;
      font-size: 8rem;
      color: var(--brand-primary);
      animation: rotateMark 20s linear infinite;
    }

    .mark-2 {
      bottom: 25%;
      right: 10%;
      font-size: 6rem;
      color: var(--brand-accent);
      animation: rotateMark 25s linear infinite reverse;
    }

    .mark-3 {
      top: 50%;
      left: 12%;
      font-size: 4rem;
      color: var(--brand-secondary);
      animation: floatMark 8s ease-in-out infinite;
    }

    @keyframes rotateMark {
      from { transform: rotate(0deg); }
      to { transform: rotate(360deg); }
    }

    @keyframes floatMark {
      0%, 100% { transform: translateY(0) rotate(0deg); }
      50% { transform: translateY(-25px) rotate(10deg); }
    }

    /* Doodle elements */
    .brand-doodle {
      position: absolute;
      stroke: var(--brand-primary);
      stroke-width: 2;
      fill: none;
      stroke-dasharray: 800;
      stroke-dashoffset: 800;
      animation: drawBrand 3s var(--ease-out) forwards;
      opacity: 0.3;
      pointer-events: none;
      z-index: 1;
    }

    .brand-doodle-1 {
      top: 15%;
      right: 15%;
      width: 180px;
      animation-delay: 0.5s;
    }

    .brand-doodle-2 {
      bottom: 20%;
      left: 8%;
      width: 150px;
      animation-delay: 1s;
    }

    @keyframes drawBrand {
      to { stroke-dashoffset: 0; }
    }

    .hero-content {
      max-width: 1000px;
      text-align: center;
      position: relative;
      z-index: 3;
      padding: 2rem;
    }

    .hero-badge {
      display: inline-block;
      padding: 0.6rem 1.5rem;
      background: var(--light-gray);
      border-radius: 50px;
      font-size: 0.8rem;
      font-weight: 600;
      color: var(--brand-primary);
      margin-bottom: 2rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      animation: fadeInUp 0.8s var(--ease-out);
    }

    .hero-cta {
      display: inline-flex;
      align-items: center;
      gap: 0.8rem;
      padding: 1.1rem 2.8rem;
      background: var(--brand-primary);
      color: var(--white);
      font-weight: 600;
      font-size: 0.95rem;
      border-radius: 50px;
      text-decoration: none;
      transition: all var(--motion-fast) var(--ease-out);
      animation: fadeInUp 0.8s var(--ease-out) 0.6s both;
      box-shadow: 0 8px 30px rgba(91, 124, 153, 0.25);
    }

    .hero-cta:hover {
      transform: translateY(-3px);
      box-shadow: 0 15px 45px rgba(91, 124, 153, 0.35);
      background: var(--brand-secondary);
    }

    .hero-cta i {
      transition: transform var(--motion-fast);
    }

    .hero-cta:hover i {
      transform: translateX(6px);
    }

    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(35px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .scroll-indicator {
      position: absolute;
      bottom: 2.5rem;
      left: 50%;
      transform: translateX(-50%);
      animation: bounce 2.5s infinite;
      z-index: 2;
    }

    .scroll-indicator i {
      font-size: 1.3rem;
      color: var(--brand-primary);
      opacity: 0.5;
    }

    @keyframes bounce {
      0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
      40% { transform: translateX(-50%) translateY(-12px); }
      60% { transform: translateX(-50%) translateY(-6px); }
    }

    /* Content Sections with Background Images */
    .content-section {
      padding: 8rem 2rem;
      position: relative;
      background: var(--light-gray);
      overflow: hidden;
    }

    .content-section.alt {
      background: var(--off-white);
    }

    .section-bg {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      opacity: 0.04;
      z-index: 0;
      background-attachment: fixed;
    }

    .section-container {
      max-width: 1100px;
      margin: auto;
      position: relative;
      z-index: 1;
    }

    .section-intro {
      text-align: center;
      margin-bottom: 5rem;
      max-width: 750px;
      margin-left: auto;
      margin-right: auto;
    }

    .section-tag {
      display: inline-block;
      padding: 0.4rem 1.1rem;
      background: var(--light-gray);
      border-radius: 50px;
      font-size: 0.75rem;
      font-weight: 600;
      color: var(--brand-primary);
      margin-bottom: 1.2rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    .section-intro h2 {
      font-size: clamp(1.9rem, 4vw, 3rem);
      margin-bottom: 1.3rem;
      font-weight: 700;
    }

    .section-intro p {
      color: var(--text-gray);
      font-size: 1.05rem;
      line-height: 1.9;
    }

    /* BRAND SHOWCASE SECTION - New Addition */
    .brand-showcase {
      padding: 10rem 2rem;
      background: var(--white);
      position: relative;
    }

    .showcase-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
      margin-top: 4rem;
    }

    .showcase-item {
      position: relative;
      border-radius: 20px;
      overflow: hidden;
      aspect-ratio: 4/5;
      cursor: pointer;
      group: true;
    }

    .showcase-item.tall {
      grid-row: span 2;
      aspect-ratio: auto;
    }

    .showcase-item.wide {
      grid-column: span 2;
      aspect-ratio: 16/9;
    }

    .showcase-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform var(--motion-medium) var(--ease-out);
    }

    .showcase-item:hover .showcase-image {
      transform: scale(1.08);
    }

    .showcase-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(30, 41, 59, 0.9), transparent);
      opacity: 0;
      transition: opacity var(--motion-fast);
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 2rem;
    }

    .showcase-item:hover .showcase-overlay {
      opacity: 1;
    }

    .showcase-category {
      font-size: 0.8rem;
      color: var(--brand-accent);
      text-transform: uppercase;
      letter-spacing: 0.1em;
      margin-bottom: 0.5rem;
    }

    .showcase-title {
      font-size: 1.4rem;
      color: var(--white);
      font-weight: 600;
      margin-bottom: 0.5rem;
    }

    .showcase-description {
      font-size: 0.9rem;
      color: rgba(255,255,255,0.8);
      line-height: 1.6;
    }

        /* Specific tweak for GIF items to ensure smooth playback */
    .showcase-item img[src$=".gif"] {
      /* Ensures GIF doesn't pause during hover transformations */
      will-change: transform; 
    }

    /* Optional: Add a small play icon overlay on GIFs before hover */
    .showcase-item:has(img[src$=".gif"]) .showcase-overlay {
      opacity: 0.4; /* Slightly visible even before hover to indicate motion */
    }
    
    .showcase-item:has(img[src$=".gif"]):hover .showcase-overlay {
      opacity: 1;
    }

    /* First Impressions - Visual Impact Demo */
    .impression-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
      margin-top: 4rem;
    }

    .impression-visual {
      position: relative;
      height: 500px;
      background: var(--light-gray);
      border-radius: 20px;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .logo-comparison {
      display: flex;
      flex-direction: column;
      gap: 2rem;
      width: 80%;
    }

    .logo-item {
      padding: 2rem;
      background: var(--white);
      border-radius: 15px;
      text-align: center;
      box-shadow: 0 10px 40px rgba(0,0,0,0.06);
      transition: all var(--motion-fast);
      opacity: 0.7;
    }

    .logo-item.weak {
      border: 2px dashed var(--text-light);
    }

    .logo-item.strong {
      border: 2px solid var(--brand-primary);
      background: linear-gradient(135deg, var(--white), rgba(91,124,153,0.05));
      opacity: 1;
      transform: scale(1.05);
    }

    .logo-item:hover {
      transform: translateY(-5px);
    }

    .logo-item.strong:hover {
      transform: translateY(-5px) scale(1.05);
    }

    .logo-icon {
      font-size: 3rem;
      margin-bottom: 1rem;
    }

    .logo-item.weak .logo-icon {
      color: var(--text-light);
    }

    .logo-item.strong .logo-icon {
      color: var(--brand-primary);
    }

    .logo-item h4 {
      font-size: 1.1rem;
      margin-bottom: 0.5rem;
    }

    .logo-item p {
      font-size: 0.85rem;
      color: var(--text-gray);
    }

    .impression-content h3 {
      font-size: 2rem;
      margin-bottom: 1.5rem;
      font-weight: 700;
    }

    .impression-content > p {
      color: var(--text-gray);
      margin-bottom: 2rem;
      font-size: 1.05rem;
      line-height: 1.9;
    }

    .impression-points {
      list-style: none;
    }

    .impression-points li {
      padding: 1rem 0;
      padding-left: 2.5rem;
      position: relative;
      color: var(--text-gray);
      font-size: 0.95rem;
      border-bottom: 1px solid rgba(0,0,0,0.05);
    }

    .impression-points li::before {
      content: '→';
      position: absolute;
      left: 0;
      color: var(--brand-primary);
      font-weight: 600;
    }

    /* System Grid */
    .system-showcase {
      margin-top: 4rem;
    }

    .system-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
      margin-top: 3rem;
    }

    .system-item {
      padding: 2.5rem 2rem;
      background: var(--white);
      border-radius: 15px;
      text-align: center;
      transition: all var(--motion-fast);
      border: 1px solid transparent;
    }

    .system-item:hover {
      border-color: var(--brand-primary);
      transform: translateY(-8px);
      box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    }

    .system-icon {
      width: 80px;
      height: 80px;
      margin: 0 auto 1.5rem;
      background: var(--light-gray);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2rem;
      color: var(--brand-primary);
      transition: all var(--motion-fast);
    }

    .system-item:hover .system-icon {
      background: var(--brand-primary);
      color: var(--white);
      transform: rotate(10deg) scale(1.1);
    }

    .system-item h3 {
      font-size: 1.2rem;
      margin-bottom: 0.8rem;
      font-weight: 600;
    }

    .system-item p {
      color: var(--text-gray);
      font-size: 0.9rem;
      line-height: 1.7;
    }

    /* Touchpoints */
    .touchpoints-wrapper {
      display: flex;
      flex-direction: column;
      gap: 6rem;
      margin-top: 4rem;
    }

    .touchpoint-item {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: center;
      opacity: 0;
      transform: translateY(40px);
      transition: all var(--motion-medium) var(--ease-out);
    }

    .touchpoint-item.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .touchpoint-item:nth-child(even) {
      direction: rtl;
    }

    .touchpoint-item:nth-child(even) > * {
      direction: ltr;
    }

    .touchpoint-visual {
      position: relative;
      height: 400px;
      background: var(--light-gray);
      border-radius: 20px;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .touchpoint-mockup {
      width: 90%;
      height: 85%;
      background: var(--white);
      border-radius: 12px;
      box-shadow: 0 20px 60px rgba(0,0,0,0.1);
      display: flex;
      flex-direction: column;
      padding: 2rem;
      position: relative;
      overflow: hidden;
    }

    .mockup-header {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-bottom: 1.5rem;
      padding-bottom: 1.5rem;
      border-bottom: 2px solid var(--light-gray);
    }

    .mockup-logo {
      width: 50px;
      height: 50px;
      background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
      border-radius: 10px;
    }

    .mockup-lines {
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }

    .mockup-line {
      height: 8px;
      background: var(--light-gray);
      border-radius: 4px;
    }

    .mockup-line.short { width: 60%; }
    .mockup-line.medium { width: 80%; }

    .mockup-content {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
      flex: 1;
    }

    .mockup-block {
      background: var(--light-gray);
      border-radius: 8px;
      min-height: 100px;
    }

    .touchpoint-content h3 {
      font-size: 1.8rem;
      margin-bottom: 1.2rem;
      font-weight: 700;
    }

    .touchpoint-content > p {
      color: var(--text-gray);
      margin-bottom: 1.5rem;
      font-size: 1rem;
      line-height: 1.8;
    }

    .touchpoint-features {
      list-style: none;
    }

    .touchpoint-features li {
      padding: 0.7rem 0;
      padding-left: 2rem;
      position: relative;
      color: var(--text-gray);
      font-size: 0.95rem;
    }

    .touchpoint-features li::before {
      content: '✓';
      position: absolute;
      left: 0;
      color: var(--brand-secondary);
      font-weight: 700;
    }

    /* Struggle Section */
    .struggle-visual {
      position: relative;
      height: 450px;
      background: var(--color);
      border-radius: 20px;
      margin: 4rem 0;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .fragmented-brand {
      display: flex;
      gap: 2rem;
      align-items: center;
    }

    .fragment-item {
      width: 100px;
      height: 100px;
      border-radius: 15px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2.5rem;
      animation: fragmentFloat 4s ease-in-out infinite;
    }

    .fragment-item:nth-child(1) {
      background: var(--brand-primary);
      color: var(--white);
      animation-delay: 0s;
    }

    .fragment-item:nth-child(2) {
      background: var(--brand-accent);
      color: var(--white);
      animation-delay: -1s;
      transform: rotate(15deg);
    }

    .fragment-item:nth-child(3) {
      background: var(--brand-secondary);
      color: var(--white);
      animation-delay: -2s;
      transform: rotate(-10deg);
    }

    .fragment-item:nth-child(4) {
      background: var(--brand-warm);
      color: var(--white);
      animation-delay: -3s;
      transform: rotate(5deg);
    }

    @keyframes fragmentFloat {
      0%, 100% { transform: translateY(0) rotate(var(--rotation, 0deg)); }
      50% { transform: translateY(-15px) rotate(var(--rotation, 0deg)); }
    }

    .struggle-content {
      text-align: center;
      max-width: 700px;
      margin: auto;
    }

    .struggle-content h3 {
      font-size: 1.9rem;
      margin-bottom: 1.3rem;
      font-weight: 700;
    }

    .struggle-content > p {
      color: var(--text-gray);
      font-size: 1.05rem;
      line-height: 1.9;
      margin-bottom: 2rem;
    }

    .struggle-list {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
      justify-content: center;
    }

    .struggle-tag {
      padding: 0.7rem 1.3rem;
      background: var(--white);
      border-radius: 50px;
      font-size: 0.85rem;
      color: var(--text-gray);
      border: 1px solid var(--light-gray);
    }

    /* Approach Steps */
    .approach-steps {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 3rem;
      margin-top: 4rem;
    }

    .approach-step {
      padding: 3rem 2.5rem;
      background: var(--white);
      border-radius: 20px;
      position: relative;
      overflow: hidden;
      transition: all var(--motion-fast);
      border: 1px solid var(--light-gray);
    }

    .approach-step::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 4px;
      background: linear-gradient(90deg, var(--brand-primary), var(--brand-accent));
      transform: scaleX(0);
      transform-origin: left;
      transition: transform var(--motion-medium);
    }

    .approach-step:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    }

    .approach-step:hover::before {
      transform: scaleX(1);
    }

    .step-number {
      font-size: 3.5rem;
      font-weight: 700;
      color: var(--brand-primary);
      opacity: 0.15;
      position: absolute;
      top: 1.5rem;
      right: 2rem;
      line-height: 1;
    }

    .approach-step h3 {
      font-size: 1.5rem;
      margin-bottom: 1.2rem;
      font-weight: 600;
      position: relative;
      z-index: 1;
    }

    .approach-step > p {
      color: var(--text-gray);
      margin-bottom: 1.5rem;
      font-size: 0.95rem;
      line-height: 1.8;
      position: relative;
      z-index: 1;
    }

    .approach-list {
      list-style: none;
      position: relative;
      z-index: 1;
    }

    .approach-list li {
      padding: 0.6rem 0;
      padding-left: 1.8rem;
      position: relative;
      color: var(--text-gray);
      font-size: 0.9rem;
    }

    .approach-list li::before {
      content: '•';
      position: absolute;
      left: 0;
      color: var(--brand-accent);
      font-weight: 700;
    }

    /* Scaling Section */
    .scaling-section {
      background: var(--background);
      color: var(--white);
      padding: 6rem 2rem;
      border-radius: 20px;
      margin: 4rem 0;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .scaling-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 30% 70%, rgba(255,255,255,0.1), transparent 50%);
      pointer-events: none;
    }

    .scaling-content {
      position: relative;
      z-index: 1;
      max-width: 800px;
      margin: auto;
    }

    .scaling-content h2 {
      color: var(--white);
      font-size: 2.5rem;
      margin-bottom: 1.5rem;
    }

    .scaling-content p {
      color: rgba(255,255,255,0.9);
      font-size: 1.1rem;
      line-height: 1.9;
      margin-bottom: 2rem;
    }

    .scaling-list {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 1rem;
      margin-top: 2rem;
    }

    .scaling-tag {
      padding: 0.8rem 1.5rem;
      background: rgba(255,255,255,0.1);
      border: 1px solid rgba(255,255,255,0.2);
      border-radius: 50px;
      font-size: 0.9rem;
      color: var(--white);
    }

    /* FAQ */
    .faq-list {
      max-width: 800px;
      margin: auto;
    }

    .faq-item {
      margin-bottom: 1rem;
      border-radius: 12px;
      overflow: hidden;
      transition: all var(--motion-fast);
    }

    .faq-question {
      padding: 1.5rem 2rem;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-weight: 600;
      color: var(--text-dark);
      background: var(--off-white);
      transition: all var(--motion-fast);
    }

    .faq-question:hover {
      background: var(--light-gray);
    }

    .faq-question i {
      transition: transform var(--motion-fast);
      color: var(--brand-primary);
      font-size: 0.8rem;
    }

    .faq-item.active .faq-question i {
      transform: rotate(180deg);
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--motion-medium) var(--ease-out);
      background: var(--white);
    }

    .faq-answer-content {
      padding: 0 2rem 1.5rem;
      color: var(--text-gray);
      line-height: 1.8;
      font-size: 0.95rem;
    }

    .faq-item.active .faq-answer {
      max-height: 400px;
    }

    /* CTA Section */
    .cta-section {
      padding: 10rem 2rem;
      text-align: center;
      position: relative;
      background: linear-gradient(135deg, var(--color) 0%, var(--brand-primary) 100%);
      overflow: hidden;
    }

    .cta-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 30% 70%, rgba(91,124,153,0.08), transparent 50%);
      pointer-events: none;
    }

    .cta-content {
      position: relative;
      z-index: 1;
      max-width: 800px;
      margin: auto;
    }

    .cta-content h2 {
      font-size: clamp(2rem, 4vw, 3rem);
      margin-bottom: 1.2rem;
      font-weight: 700;
      color: var(--white);
    }

    .cta-content p {
      font-size: 1.1rem;
      color: var(--brand-warm);
      margin-bottom: 2.5rem;
      line-height: 1.9;
      font-weight: 600;
    }

    .cta-buttons {
      display: flex;
      gap: 1rem;
      justify-content: center;
      flex-wrap: wrap;
    }

    .cta-primary {
      padding: 1.2rem 2.8rem;
      background: var(--brand-primary);
      color: var(--white);
      font-weight: 600;
      font-size: 1rem;
      border-radius: 50px;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 0.7rem;
      transition: all var(--motion-fast) var(--ease-out);
      box-shadow: 0 8px 30px rgba(91, 124, 153, 0.2);
    }

    .cta-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 15px 45px rgba(91, 124, 153, 0.3);
      background: var(--brand-secondary);
    }

    .cta-secondary {
      padding: 1.2rem 2.8rem;
      background: transparent;
      color: var(--text-dark);
      font-weight: 600;
      font-size: 1rem;
      border-radius: 50px;
      text-decoration: none;
      border: 2px solid var(--light-gray);
      transition: all var(--motion-fast);
    }

    .cta-secondary:hover {
      border-color: var(--brand-primary);
      color: var(--brand-primary);
      background: var(--light-gray);
    }

    /* Footer */
    .site-footer {
      background: var(--off-white);
      color: var(--text-gray);
      padding: 4rem 2rem 2rem;
    }

    .footer-grid {
      max-width: 1200px;
      margin: auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 2.5rem;
      margin-bottom: 2.5rem;
    }

    .footer-col h3,
    .footer-col h4 {
      color: var(--text-dark);
      margin-bottom: 1.2rem;
      font-size: 1.1rem;
      font-weight: 600;
    }

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

    .footer-col li {
      margin-bottom: 0.7rem;
      font-size: 0.95rem;
    }

    .footer-col a {
      color: var(--text-gray);
      text-decoration: none;
      transition: color var(--motion-fast);
    }

    .footer-col a:hover {
      color: var(--brand-primary);
    }

    .footer-bottom {
      max-width: 1200px;
      margin: auto;
      padding-top: 2rem;
      border-top: 1px solid rgba(0,0,0,0.05);
      text-align: center;
      font-size: 0.9rem;
    }

    /* Animation Utilities */
    .fade-in {
      opacity: 0;
      transform: translateY(25px);
      transition: all var(--motion-medium) var(--ease-out);
    }

    .fade-in.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* Responsive */
    @media (max-width: 900px) {
      .showcase-grid {
        grid-template-columns: 1fr;
      }
      
      .showcase-item.tall,
      .showcase-item.wide {
        grid-column: span 1;
        grid-row: span 1;
        aspect-ratio: 4/3;
      }

      .impression-grid,
      .touchpoint-item,
      .approach-steps {
        grid-template-columns: 1fr;
      }

      .touchpoint-item:nth-child(even) {
        direction: ltr;
      }

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

    @media (max-width: 600px) {
      .nav-links {
        display: none;
      }

      .hero h1 {
        font-size: 2.3rem;
      }

      .content-section {
        padding: 6rem 1.5rem;
      }
    }
  
  