    :root {
      --background: #2D313A;
      --background-dark: #1A1C21;
      --foreground: #F5F5F5;
      --gold: #C9A227;
      --gold-light: #E9D5BD;
      --navy: #1E3A5F;
      --muted: #9CA3AF;
      --card: rgba(255, 255, 255, 0.05);
      --card-border: rgba(255, 255, 255, 0.1);
    }

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

    body {
      font-family: 'Inter', sans-serif;
      background-color: var(--background);
      color: var(--foreground);
      line-height: 1.6;
    }

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

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

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 1.5rem;
    }

    /* Top Bar */
    .top-bar {
      background-color: var(--background);
      border-bottom: 1px solid var(--card-border);
      padding: 0.75rem 0;
      font-size: 0.875rem;
    }

    .top-bar .container {
      display: flex;
      justify-content: flex-end;
      align-items: center;
      gap: 2rem;
      flex-wrap: wrap;
    }

    .top-bar-item {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      color: var(--muted);
      transition: color 0.3s;
    }

    .top-bar-item:hover {
      color: var(--gold);
    }

    .top-bar-item svg {
      width: 16px;
      height: 16px;
    }

    .social-icons {
      display: flex;
      gap: 1rem;
    }

    .social-icon {
      color: var(--muted);
      transition: color 0.3s, transform 0.3s;
    }

    .social-icon:hover {
      color: var(--gold);
      transform: translateY(-2px);
    }

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

    /* Header */
    header {
      background-color: var(--background-dark);
      padding: 1rem 0;
      position: sticky;
      top: 0;
      z-index: 100;
    }

    header .container {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .logo img {
      height: 50px;
    }

    nav {
      display: flex;
      gap: 2rem;
    }

    nav a {
      color: var(--foreground);
      font-weight: 500;
      transition: color 0.3s;
      position: relative;
    }

    nav a:hover {
      color: var(--gold);
    }

    nav a::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--gold);
      transition: width 0.3s;
    }

    nav a:hover::after {
      width: 100%;
    }

    .mobile-menu-btn {
      display: none;
      background: none;
      border: none;
      color: var(--foreground);
      cursor: pointer;
    }

    /* Hero Section */
    .hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
      padding: 3rem 0;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at top right, rgba(201, 162, 39, 0.1) 0%, transparent 50%),
                  radial-gradient(ellipse at bottom left, rgba(30, 58, 95, 0.2) 0%, transparent 50%);
    }

    .hero .container {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
      position: relative;
      z-index: 1;
    }

    .hero-content {
      animation: fadeInUp 0.8s ease-out;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: var(--card);
      border: 1px solid var(--card-border);
      padding: 0.5rem 1rem;
      border-radius: 9999px;
      font-size: 0.875rem;
      color: var(--gold-light);
      margin-bottom: 1.5rem;
    }

    .hero h1 {
      font-size: 3.5rem;
      line-height: 1.1;
      margin-bottom: 1.5rem;
    }

    .hero h1 .gold-text {
      background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .hero p {
      font-size: 1.25rem;
      color: var(--muted);
      margin-bottom: 2rem;
      max-width: 500px;
    }

    .hero-buttons {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.875rem 1.75rem;
      border-radius: 8px;
      font-weight: 600;
      transition: all 0.3s;
      cursor: pointer;
      border: none;
      font-size: 1rem;
    }

    .btn-primary {
      background: linear-gradient(135deg, var(--gold) 0%, #B8941F 100%);
      color: var(--background-dark);
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 30px rgba(201, 162, 39, 0.3);
    }

    .btn-secondary {
      background: transparent;
      border: 1px solid var(--card-border);
      color: var(--foreground);
    }

    .btn-secondary:hover {
      border-color: var(--gold);
      color: var(--gold);
    }

    .hero-image {
      position: relative;
      animation: fadeIn 1s ease-out 0.3s both;
    }

    .hero-image img {
      width: 100%;
      max-width: 500px;
      border-radius: 20px;
      box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    }

    .hero-image::before {
      content: '';
      position: absolute;
      top: -20px;
      right: -20px;
      width: 200px;
      height: 200px;
      border: 2px solid var(--gold);
      border-radius: 20px;
      opacity: 0.3;
    }

    .floating-card {
      position: absolute;
      background: var(--card);
      backdrop-filter: blur(10px);
      border: 1px solid var(--card-border);
      padding: 1rem 1.5rem;
      border-radius: 12px;
      animation: float 3s ease-in-out infinite;
    }

    .floating-card.card-1 {
      top: 10%;
      right: -10%;
    }

    .floating-card.card-2 {
      bottom: 28%;
      left: -10%;
      animation-delay: 1s;
    }

    .floating-card .number {
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--gold);
    }

    .floating-card .label {
      font-size: 0.875rem;
      color: var(--muted);
    }

    /* Trust Strip */
    .trust-strip {
      background: var(--background-dark);
      padding: 2rem 0;
      border-top: 1px solid var(--card-border);
      border-bottom: 1px solid var(--card-border);
    }

    .trust-strip .container {
      display: flex;
      justify-content: center;
      gap: 4rem;
      flex-wrap: wrap;
    }

    .trust-item {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      color: var(--muted);
    }

    .trust-item svg {
      width: 24px;
      height: 24px;
      color: var(--gold);
    }

    /* Services Section */
    .services {
      padding: 3rem 0;
    }

    .section-header {
      text-align: center;
      margin-bottom: 2.5rem;
    }

    .section-header h2 {
      font-size: 2.5rem;
      margin-bottom: 1rem;
    }

    .section-header h2 .gold-text {
      background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .section-header p {
      color: var(--muted);
      max-width: 600px;
      margin: 0 auto;
    }

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

    .service-card {
      background: var(--card);
      border: 1px solid var(--card-border);
      border-radius: 16px;
      padding: 2rem;
      transition: all 0.3s;
    }

    .service-card:hover {
      transform: translateY(-10px);
      border-color: var(--gold);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    }

    .service-icon {
      width: 60px;
      height: 60px;
      background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.5rem;
    }

    .service-icon svg {
      width: 30px;
      height: 30px;
      color: var(--background-dark);
    }

    .service-card h3 {
      font-size: 1.25rem;
      margin-bottom: 0.75rem;
      font-family: 'Inter', sans-serif;
      font-weight: 600;
    }

    .service-card p {
      color: var(--muted);
      font-size: 0.875rem;
      margin-bottom: 1.5rem;
    }

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

    .service-features li {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.875rem;
      color: var(--foreground);
      margin-bottom: 0.5rem;
    }

    .service-features li svg {
      width: 16px;
      height: 16px;
      color: var(--gold);
    }

    /* Projects Section */
    .projects {
      padding: 3rem 0;
      background: var(--background-dark);
    }

    .projects-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 2rem;
    }

    .project-card {
      position: relative;
      border-radius: 16px;
      overflow: hidden;
      aspect-ratio: 16/10;
      cursor: pointer;
    }

    .project-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s;
    }

    .project-card:hover img {
      transform: scale(1.1);
    }

    .project-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 50%);
      padding: 2rem;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
    }

    .project-category {
      display: inline-block;
      background: var(--gold);
      color: var(--background-dark);
      padding: 0.25rem 0.75rem;
      border-radius: 4px;
      font-size: 0.75rem;
      font-weight: 600;
      margin-bottom: 0.75rem;
      width: fit-content;
    }

    .project-card h3 {
      font-size: 1.25rem;
      margin-bottom: 0.5rem;
      font-family: 'Inter', sans-serif;
      font-weight: 600;
    }

    .project-card p {
      color: var(--muted);
      font-size: 0.875rem;
    }

    /* Story Section */
    .story {
      padding: 3rem 0;
    }

    .story .container {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
    }

    .story-image {
      position: relative;
    }

    .story-image img {
      width: 100%;
      max-width: 450px;
      border-radius: 20px;
      box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    }

    .story-content h2 {
      font-size: 2.5rem;
      margin-bottom: 1.5rem;
    }

    .story-content p {
      color: var(--muted);
      margin-bottom: 1.5rem;
    }

    .story-stats {
      display: flex;
      gap: 2rem;
      margin-top: 2rem;
    }

    .stat {
      text-align: center;
    }

    .stat .number {
      font-size: 2rem;
      font-weight: 700;
      color: var(--gold);
    }

    .stat .label {
      font-size: 0.875rem;
      color: var(--muted);
    }

    /* YouTube Section — hidden until ready */
    .youtube {
      display: none;
    }

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

    .video-card {
      background: var(--card);
      border: 1px solid var(--card-border);
      border-radius: 16px;
      overflow: hidden;
      transition: all 0.3s;
    }

    .video-card:hover {
      transform: translateY(-5px);
      border-color: var(--gold);
    }

    .video-thumbnail {
      position: relative;
      aspect-ratio: 16/9;
      overflow: hidden;
    }

    .video-thumbnail img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .play-button {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 60px;
      height: 60px;
      background: rgba(255, 0, 0, 0.9);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: transform 0.3s;
    }

    .video-card:hover .play-button {
      transform: translate(-50%, -50%) scale(1.1);
    }

    .play-button svg {
      width: 24px;
      height: 24px;
      color: white;
      margin-left: 4px;
    }

    .video-duration {
      position: absolute;
      bottom: 8px;
      right: 8px;
      background: rgba(0, 0, 0, 0.8);
      padding: 0.25rem 0.5rem;
      border-radius: 4px;
      font-size: 0.75rem;
    }

    .video-info {
      padding: 1.25rem;
    }

    .video-info h3 {
      font-size: 1rem;
      font-family: 'Inter', sans-serif;
      font-weight: 600;
      margin-bottom: 0.5rem;
    }

    .video-info p {
      color: var(--muted);
      font-size: 0.75rem;
    }

    .youtube-cta {
      text-align: center;
      margin-top: 3rem;
    }

    .btn-youtube {
      background: #FF0000;
      color: white;
    }

    .btn-youtube:hover {
      background: #CC0000;
      transform: translateY(-2px);
    }

    /* Pricing / Packages Section */
    .pricing {
      padding: 3rem 0;
    }

    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      column-gap: 1.5rem;
      row-gap: 0.85rem;
      align-items: start;
    }

    .pricing-card {
      background: var(--card);
      border: 1px solid var(--card-border);
      border-radius: 14px;
      padding: 1.5rem;
      transition: all 0.3s;
      position: relative;
      display: flex;
      flex-direction: column;
      font-size: 0.92rem;
    }

    .pricing-card.featured {
      border-color: var(--gold);
    }

    .pricing-card.featured::before {
      content: 'Most Popular';
      position: absolute;
      top: -12px;
      left: 50%;
      transform: translateX(-50%);
      background: var(--gold);
      color: var(--background-dark);
      padding: 0.25rem 1rem;
      border-radius: 9999px;
      font-size: 0.75rem;
      font-weight: 600;
      white-space: nowrap;
    }

    .pricing-card:hover {
      border-color: var(--gold);
      transform: translateY(-4px);
      box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    }

    .pricing-card-header {
      margin-bottom: 0.75rem;
    }

    .pricing-card h3 {
      font-size: 1.25rem;
      margin-bottom: 0.25rem;
      font-family: 'Inter', sans-serif;
      font-weight: 700;
    }

    .pricing-card .for-who {
      font-size: 0.8rem;
      color: var(--gold);
      font-weight: 500;
      margin-bottom: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    .pricing-card .pricing-price {
      font-family: 'Playfair Display', serif;
      font-size: 1.6rem;
      font-weight: 700;
      color: var(--foreground);
      margin: 0.5rem 0 0;
    }
    .pricing-card .pricing-price span {
      font-size: 0.75rem;
      font-weight: 500;
      color: var(--muted);
      font-family: 'Inter', sans-serif;
      text-transform: uppercase;
      letter-spacing: 0.04em;
      margin-left: 6px;
    }

    .pricing-card .package-desc {
      color: var(--muted);
      font-size: 0.875rem;
      line-height: 1.5;
    }

    .pricing-divider {
      border: none;
      border-top: 1px solid var(--card-border);
      margin: 0.5rem 0 1.25rem;
    }

    .pricing-features {
      list-style: none;
      margin-bottom: 1.5rem;
      flex: 1;
    }

    .pricing-features li {
      display: flex;
      align-items: flex-start;
      gap: 0.5rem;
      font-size: 0.875rem;
      margin-bottom: 0.6rem;
      color: var(--foreground);
    }

    .pricing-features li svg {
      width: 16px;
      height: 16px;
      color: var(--gold);
      flex-shrink: 0;
      margin-top: 2px;
    }

    .pricing-timeline {
      font-size: 0.8rem;
      color: var(--muted);
      margin-bottom: 1.5rem;
      display: flex;
      align-items: center;
      gap: 0.4rem;
    }

    .pricing-timeline svg {
      width: 14px;
      height: 14px;
      color: var(--gold);
    }

    .pricing-cta-group {
      display: flex;
      flex-direction: column;
      gap: 0.6rem;
    }

    .pricing-cta-group .btn {
      justify-content: center;
      padding: 0.65rem 1rem;
      font-size: 0.82rem;
      white-space: nowrap;
      font-size: 0.875rem;
    }

    /* Featured Projects (Case Studies) */
    .featured-projects {
      padding: 3rem 0;
      background: var(--background);
    }

    .case-studies-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
    }

    .case-study-card {
      background: var(--card);
      border: 1px solid var(--card-border);
      border-radius: 16px;
      overflow: hidden;
      transition: all 0.3s;
    }

    .case-study-card:hover {
      border-color: var(--gold);
      transform: translateY(-6px);
      box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    }

    .case-study-thumb {
      width: 100%;
      aspect-ratio: 16/8;
      overflow: hidden;
      position: relative;
      background: var(--background-dark);
    }

    .case-study-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s;
    }

    .case-study-card:hover .case-study-thumb img {
      transform: scale(1.05);
    }

    .case-study-body {
      padding: 1.75rem;
    }

    .case-study-tag {
      display: inline-block;
      background: rgba(201,162,39,0.15);
      color: var(--gold);
      padding: 0.2rem 0.7rem;
      border-radius: 4px;
      font-size: 0.75rem;
      font-weight: 600;
      margin-bottom: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    .case-study-body h3 {
      font-size: 1.15rem;
      font-family: 'Inter', sans-serif;
      font-weight: 700;
      margin-bottom: 0.5rem;
    }

    .case-study-body .challenge {
      color: var(--muted);
      font-size: 0.875rem;
      margin-bottom: 1rem;
      line-height: 1.5;
    }

    .case-study-tech {
      display: flex;
      flex-wrap: wrap;
      gap: 0.4rem;
      margin-bottom: 1.25rem;
    }

    .tech-tag {
      background: var(--background-dark);
      border: 1px solid var(--card-border);
      color: var(--muted);
      padding: 0.2rem 0.6rem;
      border-radius: 4px;
      font-size: 0.75rem;
    }

    /* Portfolio Sections */
    .portfolio {
      padding: 3rem 0;
      background: var(--background-dark);
    }

    .portfolio-tabs {
      display: flex;
      gap: 0;
      margin-bottom: 3rem;
      background: var(--card);
      border: 1px solid var(--card-border);
      border-radius: 10px;
      padding: 0.25rem;
      width: fit-content;
      margin-left: auto;
      margin-right: auto;
    }

    .portfolio-tab {
      padding: 0.6rem 1.5rem;
      border-radius: 8px;
      border: none;
      background: none;
      color: var(--muted);
      font-size: 0.9rem;
      font-weight: 500;
      cursor: pointer;
      transition: all 0.3s;
      font-family: 'Inter', sans-serif;
    }

    .portfolio-tab.active {
      background: var(--gold);
      color: var(--background-dark);
      font-weight: 600;
    }

    .portfolio-pane {
      display: none;
    }

    .portfolio-pane.active {
      display: block;
    }


    /* Portfolio count badge */
    .portfolio-count {
      text-align: center;
      color: var(--muted);
      font-size: 0.8rem;
      margin-bottom: 1.5rem;
    }

    .portfolio-count span {
      color: var(--gold);
      font-weight: 600;
    }

    /* Website Portfolio Cards */
    .website-portfolio-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.25rem;
    }

    .website-card {
      background: var(--card);
      border: 1px solid var(--card-border);
      border-radius: 10px;
      overflow: hidden;
      transition: all 0.3s;
    }

    .website-card:hover {
      border-color: var(--gold);
      transform: translateY(-4px);
      box-shadow: 0 12px 24px rgba(0,0,0,0.3);
    }

    .website-thumb {
      aspect-ratio: 16/7;
      overflow: hidden;
      position: relative;
      background: var(--background-dark);
    }

    .website-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: top;
      transition: transform 0.5s;
    }

    .website-card:hover .website-thumb img {
      transform: scale(1.04);
    }

    .website-card-body {
      padding: 0.85rem 1rem;
    }

    .website-card-body .site-category {
      font-size: 0.65rem;
      color: var(--gold);
      text-transform: uppercase;
      letter-spacing: 0.06em;
      font-weight: 600;
      margin-bottom: 0.2rem;
    }

    .website-card-body h3 {
      font-size: 0.875rem;
      font-family: 'Inter', sans-serif;
      font-weight: 600;
      margin-bottom: 0.2rem;
    }

    .website-card-body p {
      color: var(--muted);
      font-size: 0.73rem;
      margin-bottom: 0.65rem;
      line-height: 1.4;
    }

    .website-card-body .btn {
      padding: 0.38rem 0.8rem;
      font-size: 0.73rem;
    }

    /* ============================================================
       Insights Strip
       ============================================================ */
    .insights-strip {
      padding: 3rem 0;
      background: var(--background-dark);
      border-top: 1px solid var(--card-border);
    }

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

    .insight-card {
      background: var(--card);
      border: 1px solid var(--card-border);
      border-radius: 12px;
      overflow: hidden;
      transition: all 0.3s;
      display: flex;
      flex-direction: column;
      text-decoration: none;
      color: inherit;
    }

    .insight-card:hover {
      border-color: var(--gold);
      transform: translateY(-5px);
      box-shadow: 0 16px 32px rgba(0,0,0,0.3);
    }

    .insight-card-thumb {
      aspect-ratio: 16/8;
      overflow: hidden;
      background: var(--background-dark);
    }

    .insight-card-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s;
    }

    .insight-card:hover .insight-card-thumb img {
      transform: scale(1.05);
    }

    .insight-card-body {
      padding: 1.1rem 1.25rem;
      flex: 1;
      display: flex;
      flex-direction: column;
    }

    .insight-category {
      font-size: 0.68rem;
      color: var(--gold);
      text-transform: uppercase;
      letter-spacing: 0.07em;
      font-weight: 600;
      margin-bottom: 0.4rem;
    }

    .insight-card-body h3 {
      font-size: 0.95rem;
      font-family: 'Inter', sans-serif;
      font-weight: 600;
      line-height: 1.4;
      margin-bottom: 0.5rem;
      flex: 1;
    }

    .insight-card-body p {
      color: var(--muted);
      font-size: 0.78rem;
      line-height: 1.5;
      margin-bottom: 0.75rem;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    .insight-read-more {
      font-size: 0.78rem;
      color: var(--gold);
      font-weight: 600;
      display: flex;
      align-items: center;
      gap: 0.3rem;
    }

    .insights-cta {
      text-align: center;
    }

    /* Loading skeleton for insights */
    .insight-skeleton {
      background: var(--card);
      border: 1px solid var(--card-border);
      border-radius: 12px;
      overflow: hidden;
      animation: pulse 1.5s ease-in-out infinite;
    }

    @keyframes pulse {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.5; }
    }

    .skeleton-thumb {
      aspect-ratio: 16/8;
      background: var(--card-border);
    }

    .skeleton-body {
      padding: 1.1rem 1.25rem;
    }

    .skeleton-line {
      height: 0.7rem;
      background: var(--card-border);
      border-radius: 4px;
      margin-bottom: 0.6rem;
    }

    .skeleton-line.short { width: 40%; }
    .skeleton-line.medium { width: 75%; }
    .skeleton-line.long { width: 90%; }


    /* ============================================================
       Animated counters
       ============================================================ */
    .stat .number {
      font-size: 2rem;
      font-weight: 700;
      color: var(--gold);
      font-family: 'Inter', sans-serif;
    }
    .creative-portfolio-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
      margin-bottom: 2rem;
    }

    .creative-card {
      background: var(--card);
      border: 1px solid var(--card-border);
      border-radius: 12px;
      overflow: hidden;
      transition: all 0.3s;
      cursor: pointer;
    }

    .creative-card:hover {
      border-color: var(--gold);
      transform: translateY(-5px);
      box-shadow: 0 15px 30px rgba(0,0,0,0.3);
    }

    .creative-thumb {
      aspect-ratio: 4/3;
      overflow: hidden;
      position: relative;
      background: var(--background-dark);
    }

    .creative-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s;
    }

    .creative-card:hover .creative-thumb img {
      transform: scale(1.08);
    }

    .creative-overlay {
      position: absolute;
      inset: 0;
      background: rgba(0,0,0,0.5);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: opacity 0.3s;
    }

    .creative-card:hover .creative-overlay {
      opacity: 1;
    }

    .creative-overlay svg {
      width: 32px;
      height: 32px;
      color: white;
    }

    .creative-card-body {
      padding: 1rem 1.25rem;
    }

    .creative-card-body .pin-category {
      font-size: 0.7rem;
      color: var(--gold);
      text-transform: uppercase;
      letter-spacing: 0.06em;
      font-weight: 600;
    }

    .pinterest-cta-full {
      display: flex;
      align-items: center;
      gap: 2rem;
      width: 100%;
      min-height: 220px;
      padding: 2.5rem 3rem;
      background: linear-gradient(135deg, var(--navy) 0%, var(--background-dark) 100%);
      border: 1px solid var(--card-border);
      border-radius: 16px;
      text-decoration: none;
      transition: all 0.3s;
    }
    .pinterest-cta-full:hover {
      border-color: var(--gold);
      transform: translateY(-3px);
      box-shadow: 0 20px 40px rgba(0,0,0,0.35);
    }
    .pinterest-cta-icon {
      flex: none;
      width: 72px;
      height: 72px;
      border-radius: 50%;
      background: #E60023;
      color: white;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .pinterest-cta-text { flex: 1; }
    .pinterest-cta-text h3 {
      color: var(--foreground);
      font-size: 1.4rem;
      margin-bottom: 0.5rem;
    }
    .pinterest-cta-text p {
      color: var(--muted);
      margin: 0;
      font-size: 0.95rem;
    }
    .pinterest-cta-arrow {
      flex: none;
      color: var(--gold);
      transition: transform 0.3s;
    }
    .pinterest-cta-full:hover .pinterest-cta-arrow {
      transform: translateX(6px);
    }
    @media (max-width: 640px) {
      .pinterest-cta-full {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem;
        min-height: auto;
      }
      .pinterest-cta-arrow { display: none; }
    }

    /* Final CTA */
    .final-cta {
      padding: 3rem 0;
      background: linear-gradient(135deg, var(--navy) 0%, var(--background-dark) 100%);
      text-align: center;
    }

    .final-cta h2 {
      font-size: 3rem;
      margin-bottom: 1.5rem;
    }

    .final-cta p {
      color: var(--muted);
      max-width: 600px;
      margin: 0 auto 2rem;
      font-size: 1.25rem;
    }

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

    /* Contact Section */
    /* Testimonials */
    .testimonials {
      padding: 3rem 0;
      background: var(--background);
      overflow: hidden;
    }

    .testimonials-carousel {
      position: relative;
    }

    .testimonials-track-wrap {
      overflow: hidden;
    }

    .testimonials-track {
      display: flex;
      gap: 1.5rem;
      transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .testimonial-card {
      background: var(--card);
      border: 1px solid var(--card-border);
      border-radius: 16px;
      padding: 1.75rem;
      flex: 0 0 calc(33.333% - 1rem);
      margin-right: 1.5rem;
      box-sizing: border-box;
      display: flex;
      flex-direction: column;
    }

    .testimonial-quote {
      font-size: 2.5rem;
      color: var(--gold);
      line-height: 1;
      margin-bottom: 0.5rem;
      font-family: 'Playfair Display', serif;
      opacity: 0.5;
    }

    .testimonial-text {
      color: var(--foreground);
      font-size: 0.875rem;
      line-height: 1.7;
      margin-bottom: 1.25rem;
      font-style: italic;
      flex: 1;
    }

    .testimonial-stars {
      display: flex;
      gap: 0.2rem;
      margin-bottom: 1rem;
      color: var(--gold);
    }

    .testimonial-stars svg {
      width: 14px;
      height: 14px;
    }

    .testimonial-author {
      display: flex;
      align-items: center;
      gap: 0.85rem;
      margin-top: auto;
    }

    .testimonial-author img {
      width: 46px;
      height: 46px;
      border-radius: 50%;
      object-fit: cover;
      border: 2px solid var(--gold);
      flex-shrink: 0;
    }

    .testimonial-author-info h4 {
      font-size: 0.875rem;
      font-family: 'Inter', sans-serif;
      font-weight: 600;
      margin-bottom: 0.1rem;
    }

    .testimonial-author-info p {
      font-size: 0.73rem;
      color: var(--muted);
    }

    .testimonial-project-links {
      display: flex;
      flex-wrap: wrap;
      gap: 0.35rem;
      margin-top: 0.35rem;
    }

    .testimonial-project-links a {
      font-size: 0.65rem;
      color: var(--gold);
      border: 1px solid rgba(201,162,39,0.3);
      padding: 0.1rem 0.45rem;
      border-radius: 4px;
      transition: all 0.2s;
    }

    .testimonial-project-links a:hover {
      background: rgba(201,162,39,0.1);
    }

    /* Carousel controls */
    .carousel-controls {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 1rem;
      margin-top: 2rem;
    }

    .carousel-btn {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      border: 1px solid var(--card-border);
      background: var(--card);
      color: var(--foreground);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.3s;
      flex-shrink: 0;
    }

    .carousel-btn:hover {
      border-color: var(--gold);
      color: var(--gold);
    }

    .carousel-btn svg {
      width: 18px;
      height: 18px;
    }

    .carousel-dots {
      display: flex;
      gap: 0.5rem;
    }

    .carousel-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--card-border);
      border: none;
      cursor: pointer;
      transition: all 0.3s;
      padding: 0;
    }

    .carousel-dot.active {
      background: var(--gold);
      transform: scale(1.2);
    }

    @media (max-width: 768px) {
      .testimonial-card {
        flex: 0 0 calc(100% - 0rem);
        margin-right: 1.5rem;
      }
    }

    @media (min-width: 769px) and (max-width: 1024px) {
      .testimonial-card {
        flex: 0 0 calc(50% - 0.75rem);
      }
      .pricing-grid,
      .case-studies-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    /* Contact — 3 column */
    .contact {
      padding: 3rem 0;
      background: var(--background-dark);
    }

    .contact .container {
      display: grid;
      grid-template-columns: 1fr 1fr 1.4fr;
      gap: 2.5rem;
      align-items: stretch;
    }

    .contact-photo {
      position: relative;
    }

    .contact-photo img {
      width: 100%;
      height: 100%;
      border-radius: 16px;
      box-shadow: 0 20px 40px rgba(0,0,0,0.4);
      object-fit: cover;
      object-position: top;
      display: block;
    }

    /* Back-to-top roll-up button */
    .back-to-top {
      position: fixed;
      bottom: 5.5rem;
      right: 2rem;
      z-index: 998;
      width: 44px;
      height: 44px;
      background: var(--background-dark);
      border: 1px solid var(--card-border);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.3s;
      opacity: 0;
      transform: translateY(20px);
      pointer-events: none;
      box-shadow: 0 4px 16px rgba(0,0,0,0.3);
    }

    .back-to-top.visible {
      opacity: 1;
      transform: translateY(0);
      pointer-events: all;
    }

    .back-to-top:hover {
      background: var(--gold);
      border-color: var(--gold);
    }

    .back-to-top:hover svg {
      color: var(--background-dark);
    }

    .back-to-top svg {
      width: 20px;
      height: 20px;
      color: var(--foreground);
      transition: color 0.3s;
    }

    @media (max-width: 768px) {
      .back-to-top {
        bottom: 7rem;
        right: 1.5rem;
        width: 40px;
        height: 40px;
      }
    }

    .contact-info h2 {
      font-size: 2rem;
      margin-bottom: 1rem;
    }

    .contact-info > p {
      color: var(--muted);
      margin-bottom: 1.75rem;
      font-size: 0.9rem;
      line-height: 1.6;
    }

    .contact-details {
      margin-bottom: 1.5rem;
    }

    .contact-item {
      display: flex;
      align-items: center;
      gap: 0.85rem;
      margin-bottom: 0.85rem;
    }

    .contact-item svg {
      width: 20px;
      height: 20px;
      color: var(--gold);
      flex-shrink: 0;
    }

    .contact-item a, .contact-item span {
      color: var(--foreground);
      transition: color 0.3s;
      font-size: 0.9rem;
    }

    .contact-item a:hover {
      color: var(--gold);
    }

    .contact-social {
      display: flex;
      gap: 0.75rem;
      flex-wrap: wrap;
      margin-top: 1.5rem;
    }

    .contact-social a {
      width: 38px;
      height: 38px;
      background: var(--card);
      border: 1px solid var(--card-border);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--muted);
      transition: all 0.3s;
    }

    .contact-social a:hover {
      border-color: var(--gold);
      color: var(--gold);
    }

    .contact-social svg {
      width: 16px;
      height: 16px;
    }

    .contact-form {
      background: var(--card);
      border: 1px solid var(--card-border);
      border-radius: 16px;
      padding: 1.5rem;
      display: flex;
      flex-direction: column;
      height: 100%;
    }

    .contact-form form {
      display: flex;
      flex-direction: column;
      height: 100%;
    }

    .form-group {
      margin-bottom: 0.85rem;
    }

    .form-group label {
      display: block;
      margin-bottom: 0.3rem;
      font-weight: 500;
      font-size: 0.8rem;
      color: var(--muted);
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%;
      padding: 0.6rem 0.75rem;
      background: var(--background-dark);
      border: 1px solid var(--card-border);
      border-radius: 8px;
      color: var(--foreground);
      font-size: 0.875rem;
      transition: border-color 0.3s;
      font-family: 'Inter', sans-serif;
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      outline: none;
      border-color: var(--gold);
    }

    .form-group textarea {
      min-height: 72px;
      resize: vertical;
      flex: 1;
    }

    .form-group:last-of-type {
      flex: 1;
      display: flex;
      flex-direction: column;
    }

    .form-group:last-of-type textarea {
      flex: 1;
    }

    .contact-form .btn {
      width: 100%;
      justify-content: center;
      margin-top: auto;
    }

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

    /* Footer */
    footer {
      background: var(--background-dark);
      border-top: 1px solid var(--card-border);
    }

    .footer-content {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 3rem;
      margin-bottom: 3rem;
    }

    .footer-brand img {
      height: 40px;
      margin-bottom: 1rem;
    }

    .footer-brand p {
      color: var(--muted);
      font-size: 0.875rem;
      margin-bottom: 1.5rem;
    }

    .footer-social {
      display: flex;
      gap: 1rem;
    }

    .footer-social a {
      color: var(--muted);
      transition: color 0.3s;
    }

    .footer-social a:hover {
      color: var(--gold);
    }

    .footer-links h4 {
      font-size: 1rem;
      font-family: 'Inter', sans-serif;
      font-weight: 600;
      margin-bottom: 1.5rem;
    }

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

    .footer-links li {
      margin-bottom: 0.75rem;
    }

    .footer-links a {
      color: var(--muted);
      font-size: 0.875rem;
      transition: color 0.3s;
    }

    .footer-links a:hover {
      color: var(--gold);
    }

    .footer-bottom {
      border-top: 1px solid var(--card-border);
      padding-top: 2rem;
      text-align: center;
      color: var(--muted);
      font-size: 0.875rem;
    }

    /* WhatsApp Button */
    .whatsapp-btn {
      position: fixed;
      bottom: 1.5rem;
      right: 1.5rem;
      width: 48px;
      height: 48px;
      background: #25D366;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
      z-index: 1000;
      transition: transform 0.3s, box-shadow 0.3s;
      animation: pulse 2s infinite;
    }

    .whatsapp-btn:hover {
      transform: scale(1.1);
      box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
    }

    .whatsapp-btn svg {
      width: 24px;
      height: 24px;
      color: white;
    }

    /* Animations */
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }

    @keyframes float {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-10px); }
    }

    @keyframes pulse {
      0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
      50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6); }
    }

    /* Responsive */
    @media (max-width: 1024px) {
      .hero .container,
      .story .container {
        grid-template-columns: 1fr;
        text-align: center;
      }

      .contact .container {
        grid-template-columns: 1fr 1fr;
      }

      .contact-photo {
        display: none;
      }

      .hero-content, .story-content {
        order: 1;
      }

      .hero-image, .story-image {
        order: 0;
        margin-bottom: 2rem;
      }

      .hero-image img, .story-image img {
        margin: 0 auto;
      }

      .hero-buttons, .story-stats {
        justify-content: center;
      }

      .services-grid,
      .projects-grid,
      .videos-grid,
      .website-portfolio-grid,
      .creative-portfolio-grid {
        grid-template-columns: 1fr 1fr;
      }

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

      .floating-card {
        display: none;
      }
    }

    @media (max-width: 768px) {
      .top-bar .container {
        justify-content: center;
        gap: 1rem;
      }

      .top-bar-item span {
        display: none;
      }

      nav {
        display: none;
      }

      .mobile-menu-btn {
        display: block;
      }

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

      .section-header h2 {
        font-size: 2rem;
      }

      .final-cta h2 {
        font-size: 2rem;
      }

      .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
      }

      .footer-social {
        justify-content: center;
      }

      .services-grid,
      .projects-grid,
      .videos-grid,
      .case-studies-grid,
      .pricing-grid,
      .website-portfolio-grid,
      .creative-portfolio-grid,
      .testimonials-grid,
      .insights-grid {
        grid-template-columns: 1fr;
      }

      .contact .container {
        grid-template-columns: 1fr;
      }

      .pricing-cta-group {
        flex-direction: column;
      }
    }
/* ==========================================================
   FIXED FOOTER — always visible like the header, on every page.
   #page-wrap gets bottom padding set by JS (assets/js/sticky-footer.js)
   to match the footer's real height, expanded or collapsed.
   ========================================================== */
#page-wrap { position: relative; z-index: 1; background: var(--background); }

footer {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 90;
  padding: 0;
  border-top: 1px solid var(--card-border);
  box-shadow: 0 -8px 24px -14px rgba(0,0,0,.5);
}

.footer-toggle-row {
  position: absolute;
  top: -22px; right: 78px; /* clears the WhatsApp button, which sits at right:1.5rem */
  max-width: calc(100vw - 110px);
  display: flex;
  align-items: stretch;
  gap: 8px;
  z-index: 46;
  overflow-x: auto;
  scrollbar-width: none;
}
.footer-toggle-row::-webkit-scrollbar { display: none; }

.footer-copyright-chip,
.footer-credit-chip {
  display: flex;
  align-items: center;
  background: var(--background-dark);
  border: 1px solid var(--card-border);
  border-bottom: none;
  border-radius: 6px 6px 0 0;
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
  padding: 4px 10px;
  letter-spacing: 0.02em;
  white-space: nowrap;
  flex: none;
}
.footer-credit-chip {
  color: var(--gold-light, var(--gold));
  text-decoration: none;
}
.footer-credit-chip:hover { color: var(--gold); }

.footer-toggle {
  position: static;
  flex: none;
  background: var(--background-dark);
  border: 1px solid var(--card-border);
  border-bottom: none;
  border-radius: 6px 6px 0 0;
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  padding: 4px 12px;
  cursor: pointer;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: inherit;
}
.footer-toggle svg { width: 11px; height: 11px; transition: transform 0.2s ease; }
footer.collapsed .footer-toggle svg { transform: rotate(180deg); }

#footer-body { overflow: hidden; max-height: 420px; transition: max-height 0.25s ease; }
footer.collapsed #footer-body { max-height: 0; }

@media (max-width: 640px) {
  .footer-toggle-row {
    left: 10px;
    right: auto;
    top: -25px;
    max-width: calc(100vw - 20px);
    flex-direction: row;
    gap: 6px;
  }
  .footer-copyright-chip,
  .footer-credit-chip {
    font-size: 10px;
    padding: 4px 10px;
    border-radius: 8px 8px 0 0;
    border-bottom: none;
  }
  .footer-toggle { padding: 4px 10px; }
  .footer-content { max-height: 340px; overflow-y: auto; }
}


/* ==========================================================
   COOKIE CONSENT — plain, standard-looking on purpose. A cookie
   banner that looks "designed" reads as unusual to visitors and
   can hurt trust; boring and familiar converts better here.
   ========================================================== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 200;
  background: var(--background-dark);
  border-top: 1px solid var(--card-border);
  padding: 1rem 1.5rem;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  box-shadow: 0 -6px 20px rgba(0,0,0,.35);
}
.cookie-banner.visible { display: flex; }
.cookie-banner p {
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
  max-width: 640px;
  text-align: center;
}
.cookie-banner .btn {
  padding: 0.55rem 1.5rem;
  font-size: 0.85rem;
  flex: none;
}

/* While the cookie banner is visible, lift the WhatsApp float and
   footer chip row clear of it so nothing overlaps. */
body.cookie-banner-active .whatsapp-btn { bottom: 4.25rem; }
body.cookie-banner-active .footer-toggle-row { bottom: 4.25rem; top: auto; }

@media (max-width: 640px) {
  .cookie-banner { padding: 0.85rem 1rem; gap: 0.75rem; }
  .cookie-banner p { font-size: 0.78rem; }
  body.cookie-banner-active .whatsapp-btn { bottom: 5rem; }
  body.cookie-banner-active .footer-toggle-row { bottom: 5rem; }
}
