
    :root {
      --primary-color: #2563EB;
      --secondary-color: #7C3AED;
      --text-color: #1F2937;
      --bg-color: #FFFFFF;
    }
    * { margin: 0; padding: 0; box-sizing: border-box; }
    body {
      font-family: Inter;
      color: var(--text-color);
      background: var(--bg-color);
      line-height: 1.6;
    }
    a { color: inherit; text-decoration: none; }

    /* Navigation */
    .site-nav {
      background: #fff;
      padding: 1rem 2rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      border-bottom: 1px solid #e5e7eb;
      position: sticky;
      top: 0;
      z-index: 100;
      gap: 2rem;
    }
    .site-nav-logo {
      font-size: 1.25rem;
      font-weight: 700;
      color: var(--primary-color);
      display: flex;
      align-items: center;
      flex-shrink: 0;
    }
    .site-nav-logo-img {
      height: 44px;
      width: auto;
      max-width: 200px;
      object-fit: contain;
      border-radius: 6px;
    }
    .site-nav-links {
      display: flex;
      gap: 1.5rem;
      list-style: none;
      flex-wrap: wrap;
      justify-content: flex-end;
    }
    .site-nav-links li {
      white-space: nowrap;
    }
    .site-nav-links a {
      color: #374151;
      font-weight: 500;
      font-size: 0.9rem;
      padding: 0.5rem 0;
      transition: color 0.2s;
    }
    .site-nav-links a:hover { color: var(--primary-color); }
    .site-nav-links a.active {
      color: var(--primary-color);
    }

    /* Scroll margin for anchor links (account for sticky nav) */
    section[id] {
      scroll-margin-top: 80px;
    }

    /* Hero Section */
    .section-hero {
      padding: 5rem 2rem;
      text-align: center;
      background: linear-gradient(135deg, #2563EB, #7C3AED);
      color: white;
      position: relative;
      overflow: hidden;
    }
    .section-hero.has-bg-image {
      background: transparent;
    }
    .hero-bg-img {
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
    }
    .hero-bg-animation {
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      width: 100%;
      height: 100%;
      z-index: 2;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      pointer-events: none;
    }
    .hero-bg-animation svg {
      width: 100%;
      height: 100%;
    }
    .hero-overlay {
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      z-index: 1;
      /* Dark overlay to ensure text readability */
      background: linear-gradient(
        135deg,
        var(--overlay-start, rgba(0, 0, 0, 0.5)),
        var(--overlay-end, rgba(0, 0, 0, 0.6))
      );
    }
    /* Lighten overlay when animation is present so it's visible */
    .section-hero:has(.hero-bg-animation) .hero-overlay {
      background: linear-gradient(
        135deg,
        var(--overlay-start, rgba(0, 0, 0, 0.3)),
        var(--overlay-end, rgba(0, 0, 0, 0.4))
      );
    }
    /* Additional dark layer for better text contrast on any image */
    .section-hero.has-bg-image .hero-overlay::after {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      background: rgba(0, 0, 0, 0.35);
      pointer-events: none;
    }
    /* Ensure hero text is always light when there's a background image */
    .section-hero.has-bg-image,
    .section-hero.has-bg-image h1,
    .section-hero.has-bg-image p {
      color: white !important;
    }
    .section-hero.has-bg-image .cta-btn {
      background: white;
      color: #1a1a1a;
    }
    .hero-content { position: relative; z-index: 3; }
    .section-hero h1 {
      font-size: 3rem;
      font-weight: 700;
      margin-bottom: 1rem;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }
    .section-hero p {
      font-size: 1.25rem;
      opacity: 0.9;
      margin-bottom: 2rem;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
    }
    .cta-btn {
      display: inline-block;
      background: white;
      color: var(--primary-color);
      padding: 0.875rem 2rem;
      border-radius: 0.5rem;
      font-weight: 600;
      transition: transform 0.2s, box-shadow 0.2s;
    }
    .cta-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    }

    /* Features Section */
    .section-features {
      padding: 5rem 2rem;
      background: #f9fafb;
    }
    .section-features h2, .section-features .subtitle {
      text-align: center;
    }
    .section-features h2 {
      font-size: 2.25rem;
      margin-bottom: 0.5rem;
    }
    .section-features .subtitle {
      color: #6b7280;
      margin-bottom: 3rem;
    }
    .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 2rem;
      max-width: 1200px;
      margin: 0 auto;
    }
    .feature-item {
      background: white;
      padding: 2rem;
      border-radius: 0.75rem;
      box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    }
    .feature-icon {
      width: 48px;
      height: 48px;
      background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
      border-radius: 0.5rem;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1rem;
      color: white;
      font-size: 1.25rem;
    }
    .feature-item h3 {
      font-size: 1.125rem;
      margin-bottom: 0.5rem;
    }
    .feature-item p {
      color: #6b7280;
      font-size: 0.95rem;
    }
    .feature-image {
      width: 100%;
      max-height: 200px;
      object-fit: cover;
      border-radius: 0.5rem;
      margin-bottom: 1rem;
    }

    /* About Section */
    .section-about {
      padding: 5rem 2rem;
      background: #f9fafb;
    }
    .about-container {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      max-width: 1200px;
      margin: 0 auto;
      align-items: center;
    }
    .about-container.image-left { direction: rtl; }
    .about-container.image-left > * { direction: ltr; }
    .about-content h2 {
      font-size: 2rem;
      margin-bottom: 1rem;
    }
    .about-content p {
      color: #4b5563;
      line-height: 1.8;
    }
    .about-image img {
      width: 100%;
      border-radius: 0.75rem;
      box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    }

    /* Testimonials Section */
    .section-testimonials {
      padding: 5rem 2rem;
      background: #fff;
    }
    .section-testimonials h2 {
      text-align: center;
      font-size: 2.25rem;
      margin-bottom: 3rem;
    }
    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
      max-width: 1200px;
      margin: 0 auto;
    }
    .testimonial-item {
      background: #f9fafb;
      padding: 2rem;
      border-radius: 0.75rem;
    }
    .testimonial-quote {
      font-style: italic;
      color: #4b5563;
      margin-bottom: 1.5rem;
      line-height: 1.7;
    }
    .testimonial-author-info {
      display: flex;
      align-items: center;
      gap: 1rem;
    }
    .testimonial-avatar {
      width: 48px;
      height: 48px;
      min-width: 48px;
      border-radius: 50%;
      overflow: hidden;
      background: var(--primary-color);
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-weight: 600;
      font-size: 1.1rem;
    }
    .testimonial-avatar img {
      width: 100%;
      height: 100%;
      border-radius: 50%;
      object-fit: cover;
    }
    .testimonial-name {
      font-weight: 600;
    }
    .testimonial-role {
      font-size: 0.875rem;
      color: #6b7280;
    }

    /* Pricing Section */
    .section-pricing {
      padding: 5rem 2rem;
      background: #f9fafb;
    }
    .section-pricing h2 {
      text-align: center;
      font-size: 2.25rem;
      margin-bottom: 0.5rem;
    }
    .section-pricing .subtitle {
      text-align: center;
      color: #6b7280;
      margin-bottom: 3rem;
    }
    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 2rem;
      max-width: 1000px;
      margin: 0 auto;
    }
    .pricing-item {
      background: #fff;
      padding: 2.5rem;
      border-radius: 0.75rem;
      text-align: center;
      border: 2px solid transparent;
      transition: transform 0.2s, box-shadow 0.2s;
    }
    .pricing-item:hover {
      transform: translateY(-4px);
      box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    }
    .pricing-item.highlighted {
      border-color: var(--primary-color);
    }
    .pricing-name {
      font-size: 1.25rem;
      font-weight: 600;
      margin-bottom: 0.5rem;
    }
    .pricing-price {
      font-size: 2.5rem;
      font-weight: 700;
      color: var(--primary-color);
    }
    .pricing-period {
      font-size: 1rem;
      color: #6b7280;
      font-weight: normal;
      margin-left: 0.5rem;
      margin-bottom: 1.5rem;
    }
    .pricing-features {
      list-style: none;
      text-align: left;
      margin-bottom: 2rem;
    }
    .pricing-features li {
      padding: 0.5rem 0;
      color: #4b5563;
    }
    .pricing-features li::before {
      content: '\2713';
      color: var(--primary-color);
      margin-right: 0.75rem;
    }
    .pricing-cta {
      display: inline-block;
      background: var(--primary-color);
      color: white;
      padding: 0.875rem 2rem;
      border-radius: 0.5rem;
      font-weight: 600;
      transition: background 0.2s;
    }
    .pricing-cta:hover {
      background: color-mix(in srgb, var(--primary-color) 85%, black);
    }

    /* Contact Section */
    .section-contact {
      padding: 5rem 2rem;
      background: #fff;
    }
    .section-contact h2 {
      text-align: center;
      font-size: 2.25rem;
      margin-bottom: 0.5rem;
    }
    .section-contact .subtitle {
      text-align: center;
      color: #6b7280;
      margin-bottom: 2rem;
    }
    .contact-info {
      text-align: center;
      max-width: 600px;
      margin: 0 auto;
    }
    .contact-info p {
      margin-bottom: 0.5rem;
      color: #4b5563;
    }

    /* Contact Form Section */
    .section-contactForm {
      padding: 5rem 2rem;
      background: #fff;
    }
    .contactForm-container {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      max-width: 1000px;
      margin: 0 auto;
    }
    .contactForm-content h2 {
      font-size: 2rem;
      margin-bottom: 0.5rem;
    }
    .contactForm-content .subtitle {
      color: #6b7280;
      margin-bottom: 2rem;
    }
    .contactForm-info .info-item {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-bottom: 1rem;
      color: #4b5563;
    }
    .contactForm-info .info-item i {
      color: var(--primary-color);
      width: 20px;
    }
    .contact-form .form-group {
      margin-bottom: 1rem;
    }
    .contact-form label {
      display: block;
      margin-bottom: 0.25rem;
      font-weight: 500;
      font-size: 0.9rem;
    }
    .contact-form input,
    .contact-form select,
    .contact-form textarea {
      width: 100%;
      padding: 0.75rem;
      border: 1px solid #d1d5db;
      border-radius: 0.375rem;
      font-size: 1rem;
    }
    .contact-form input[type="date"] {
      cursor: pointer;
      background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2' ry='2'%3E%3C/rect%3E%3Cline x1='16' y1='2' x2='16' y2='6'%3E%3C/line%3E%3Cline x1='8' y1='2' x2='8' y2='6'%3E%3C/line%3E%3Cline x1='3' y1='10' x2='21' y2='10'%3E%3C/line%3E%3C/svg%3E") no-repeat right 0.75rem center;
      padding-right: 2.5rem;
    }
    .contact-form input[type="date"]::-webkit-calendar-picker-indicator {
      cursor: pointer;
    }
    .contact-form textarea {
      min-height: 120px;
      resize: vertical;
    }
    .contact-form .submit-btn {
      width: 100%;
      padding: 0.875rem;
      background: var(--primary-color);
      color: white;
      border: none;
      border-radius: 0.5rem;
      font-weight: 600;
      cursor: pointer;
      transition: background 0.2s;
    }
    .contact-form .submit-btn:hover {
      background: var(--secondary-color);
    }
    .contact-form .submit-btn:disabled {
      background: #9ca3af;
      cursor: not-allowed;
    }
    .form-message {
      padding: 1rem;
      border-radius: 0.5rem;
      margin-bottom: 1rem;
      display: none;
    }
    .form-message.success {
      display: block;
      background: #d1fae5;
      color: #065f46;
      border: 1px solid #a7f3d0;
    }
    .form-message.error {
      display: block;
      background: #fee2e2;
      color: #991b1b;
      border: 1px solid #fecaca;
    }
    /* Honeypot field - hidden from users, filled by bots */
    .hp-field {
      position: absolute;
      left: -9999px;
      top: -9999px;
    }

    /* Services Section */
    .section-services {
      padding: 5rem 2rem;
      background: #fff;
    }
    .section-services h2 {
      text-align: center;
      font-size: 2.25rem;
      margin-bottom: 0.5rem;
    }
    .section-services .subtitle {
      text-align: center;
      color: #6b7280;
      margin-bottom: 3rem;
    }
    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
      max-width: 1200px;
      margin: 0 auto;
    }
    .service-item {
      background: #f9fafb;
      padding: 2rem;
      border-radius: 0.75rem;
      transition: transform 0.2s, box-shadow 0.2s;
    }
    .service-item:hover {
      transform: translateY(-4px);
      box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    }
    .service-icon {
      font-size: 2.5rem;
      color: var(--primary-color);
      margin-bottom: 1rem;
    }
    .service-image {
      width: 100%;
      height: 160px;
      object-fit: cover;
      border-radius: 0.5rem;
      margin-bottom: 1rem;
    }
    .service-item h3 {
      font-size: 1.25rem;
      margin-bottom: 0.75rem;
    }
    .service-item p {
      color: #6b7280;
      margin-bottom: 1rem;
    }
    .service-item .service-price {
      font-weight: 600;
      color: var(--primary-color);
    }

    /* Team Section */
    .section-team {
      padding: 5rem 2rem;
      background: #f9fafb;
    }
    .section-team h2 {
      text-align: center;
      font-size: 2.25rem;
      margin-bottom: 0.5rem;
    }
    .section-team .subtitle {
      text-align: center;
      color: #6b7280;
      margin-bottom: 3rem;
    }
    .team-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2rem;
      max-width: 1200px;
      margin: 0 auto;
    }
    .team-member {
      background: #fff;
      padding: 2rem;
      border-radius: 0.75rem;
      text-align: center;
      box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    }
    .team-photo {
      width: 120px;
      height: 120px;
      border-radius: 50%;
      object-fit: cover;
      margin: 0 auto 1rem;
    }
    .team-member h3 {
      font-size: 1.125rem;
      margin-bottom: 0.25rem;
    }
    .team-member .role {
      color: var(--primary-color);
      font-size: 0.875rem;
      margin-bottom: 0.75rem;
    }
    .team-member .bio {
      color: #6b7280;
      font-size: 0.875rem;
    }

    /* Story Section */
    .section-story {
      padding: 5rem 2rem;
      background: #f9fafb;
    }
    .story-container {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      max-width: 1200px;
      margin: 0 auto;
      align-items: center;
    }
    .story-container.image-left { direction: rtl; }
    .story-container.image-left > * { direction: ltr; }
    .story-content h2 {
      font-size: 2rem;
      margin-bottom: 1rem;
    }
    .story-text {
      color: #4b5563;
      line-height: 1.8;
      margin-bottom: 1.5rem;
    }
    .story-highlights {
      display: flex;
      gap: 2rem;
      flex-wrap: wrap;
    }
    .story-highlight {
      text-align: center;
    }
    .story-highlight .value {
      font-size: 2rem;
      font-weight: 700;
      color: var(--primary-color);
    }
    .story-highlight .label {
      font-size: 0.875rem;
      color: #6b7280;
    }
    .story-image img {
      width: 100%;
      border-radius: 0.75rem;
      box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    }

    /* Gallery Section */
    .section-gallery {
      padding: 5rem 2rem;
      background: #fff;
    }
    .section-gallery h2 {
      text-align: center;
      font-size: 2.25rem;
      margin-bottom: 0.5rem;
    }
    .section-gallery .subtitle {
      text-align: center;
      color: #6b7280;
      margin-bottom: 3rem;
    }
    .gallery-grid {
      display: grid;
      gap: 1rem;
      max-width: 1200px;
      margin: 0 auto;
    }
    .gallery-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
    .gallery-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
    .gallery-item {
      position: relative;
      aspect-ratio: 1;
      border-radius: 0.5rem;
      overflow: hidden;
    }
    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.3s;
    }
    .gallery-item:hover img {
      transform: scale(1.05);
    }
    .gallery-item .caption {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 1rem;
      background: linear-gradient(transparent, rgba(0,0,0,0.7));
      color: white;
      font-size: 0.875rem;
      text-align: center;
      opacity: 0;
      transition: opacity 0.3s;
    }
    .gallery-item:hover .caption {
      opacity: 1;
    }
    a.gallery-item-linked {
      display: block;
      text-decoration: none;
      color: inherit;
    }

    /* Footer */
    .section-footer {
      padding: 3rem 2rem;
      background: #111827;
      color: #fff;
      text-align: center;
    }
    .footer-links {
      display: flex;
      justify-content: center;
      gap: 2rem;
      margin-bottom: 1.5rem;
      list-style: none;
    }
    .footer-links a {
      color: #9ca3af;
      transition: color 0.2s;
    }
    .footer-links a:hover { color: #fff; }
    .footer-copyright {
      color: #6b7280;
      font-size: 0.875rem;
    }

    /* Social Links */
    .section-socialLinks {
      padding: 4rem 2rem;
      background: #f9fafb;
    }
    .section-socialLinks h2 {
      text-align: center;
      font-size: 2.25rem;
      margin-bottom: 0.5rem;
    }
    .section-socialLinks .subtitle {
      text-align: center;
      color: #6b7280;
      margin-bottom: 2rem;
    }
    .social-links-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 1.5rem;
      max-width: 800px;
      margin: 0 auto;
    }
    .social-layout-centered { justify-content: center; }
    .social-layout-spread { justify-content: space-around; }
    .social-layout-left { justify-content: flex-start; }
    .social-layout-right { justify-content: flex-end; }
    .social-link-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
      padding: 1rem 1.25rem;
      border-radius: 0.75rem;
      background: white;
      box-shadow: 0 1px 3px rgba(0,0,0,0.1);
      transition: transform 0.2s, box-shadow 0.2s;
      text-decoration: none;
      color: var(--text-color);
      min-width: 80px;
    }
    .social-link-item:hover {
      transform: translateY(-3px);
      box-shadow: 0 4px 12px rgba(0,0,0,0.15);
      color: var(--primary-color);
    }
    .social-link-item i {
      font-size: 1.75rem;
      color: var(--primary-color);
    }
    .social-link-item .social-custom-icon {
      width: 1.75rem;
      height: 1.75rem;
      object-fit: contain;
    }
    .social-link-item span {
      font-size: 0.8rem;
      font-weight: 500;
    }

    /* Responsive */
    /* Video Section */
    .section-video {
      padding: 5rem 2rem;
      background: #fff;
    }
    .section-video h2 {
      text-align: center;
      font-size: 2.25rem;
      margin-bottom: 0.5rem;
    }
    .section-video .subtitle {
      text-align: center;
      color: #6b7280;
      margin-bottom: 2rem;
    }
    .video-container {
      max-width: 960px;
      margin: 0 auto;
    }
    .video-wrapper {
      position: relative;
      width: 100%;
      padding-bottom: 56.25%;
      height: 0;
      overflow: hidden;
      border-radius: 0.75rem;
      background: #000;
    }
    .video-wrapper.ratio-4-3 { padding-bottom: 75%; }
    .video-wrapper.ratio-1-1 { padding-bottom: 100%; }
    .video-wrapper.ratio-9-16 { padding-bottom: 177.78%; max-width: 400px; margin: 0 auto; }
    .video-wrapper iframe {
      position: absolute;
      top: 0; left: 0;
      width: 100%;
      height: 100%;
      border: 0;
    }

    /* Motion Animation Section - Two Column */
    .section-motion-animation { padding: 5rem 2rem; overflow: hidden; }
    .motion-anim-container { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; max-width: 1100px; margin: 0 auto; align-items: center; }
    .motion-anim-container.anim-right { direction: rtl; }
    .motion-anim-container.anim-right > * { direction: ltr; }
    .motion-anim-text .motion-anim-headline { font-size: 2rem; font-weight: 700; margin-bottom: 1rem; line-height: 1.2; }
    .motion-anim-text .motion-anim-desc { font-size: 1.1rem; line-height: 1.7; color: #4b5563; }
    .motion-anim-visual .animation-display { width: 100%; border-radius: 12px; overflow: hidden; display: flex; align-items: center; justify-content: center; min-height: 300px; }
    .motion-anim-visual .animation-display svg { max-width: 100%; height: auto; }
    .motion-anim-visual .animation-placeholder { background: linear-gradient(135deg, #667eea, #764ba2); width: 100%; min-height: 300px; border-radius: 12px; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1.2rem; }
    .animation-placeholder-text { color: #fff; font-size: 1rem; opacity: 0.8; }
    .animation-loading { display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 200px; background: linear-gradient(135deg, #667eea, #764ba2); border-radius: 12px; color: #fff; gap: 0.75rem; padding: 2rem; }
    .animation-spinner { width: 36px; height: 36px; border: 3px solid rgba(255,255,255,0.3); border-top-color: #fff; border-radius: 50%; animation: anim-spin 0.8s linear infinite; }
    @keyframes anim-spin { to { transform: rotate(360deg); } }
    .animation-loading p { margin: 0; font-size: 0.9rem; opacity: 0.9; }

    /* Gated Resource Section */
    .section-gated-resource {
      padding: 5rem 2rem;
      background: #f9fafb;
    }
    .gated-resource-container {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      max-width: 1000px;
      margin: 0 auto;
      align-items: center;
    }
    .gated-resource-content h2 {
      font-size: 2rem;
      margin-bottom: 1rem;
    }
    .gated-resource-content .description {
      color: #6b7280;
      margin-bottom: 2rem;
      line-height: 1.7;
    }
    .gated-resource-preview {
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 250px;
      background: #e5e7eb;
      border-radius: 1rem;
      overflow: hidden;
    }
    .gated-resource-preview img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 1rem;
    }
    .gated-resource-preview .resource-icon {
      font-size: 4rem;
      color: #9ca3af;
    }
    .gated-resource-form .form-group {
      margin-bottom: 1rem;
    }
    .gated-resource-form label {
      display: block;
      margin-bottom: 0.25rem;
      font-weight: 500;
      font-size: 0.9rem;
    }
    .gated-resource-form input {
      width: 100%;
      padding: 0.75rem;
      border: 1px solid #d1d5db;
      border-radius: 0.375rem;
      font-size: 1rem;
    }
    .gated-resource-form .gate-btn {
      width: 100%;
      padding: 0.875rem;
      background: var(--primary-color);
      color: white;
      border: none;
      border-radius: 0.5rem;
      font-weight: 600;
      cursor: pointer;
      transition: background 0.2s;
      font-size: 1rem;
    }
    .gated-resource-form .gate-btn:hover {
      background: var(--secondary-color);
    }
    .gated-resource-form .gate-btn:disabled {
      background: #9ca3af;
      cursor: not-allowed;
    }
    .gate-message {
      padding: 1rem;
      border-radius: 0.5rem;
      margin-bottom: 1rem;
      display: none;
    }
    .gate-message.visible {
      display: block;
    }
    .gate-message.success {
      display: block;
      background: #d1fae5;
      color: #065f46;
      border: 1px solid #a7f3d0;
    }
    .gate-message.error {
      display: block;
      background: #fee2e2;
      color: #991b1b;
      border: 1px solid #fecaca;
    }
    .gated-resource-form input.input-error {
      border-color: #ef4444;
    }
    .gated-resource-form input.input-valid {
      border-color: #d1d5db;
    }
    .gate-unlocked {
      text-align: center;
      padding: 2rem;
    }
    .gate-unlocked .download-btn {
      display: inline-block;
      padding: 0.875rem 2rem;
      background: var(--primary-color);
      color: white;
      border-radius: 0.5rem;
      font-weight: 600;
      text-decoration: none;
      transition: transform 0.2s;
    }
    .gate-unlocked .download-btn:hover {
      transform: translateY(-2px);
    }

    /* Animation container */
    .animation-container {
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }
    .feature-animation {
      width: 100%;
      max-width: 200px;
      height: 150px;
      margin: 0 auto 1rem;
      border-radius: 0.5rem;
    }

    /* Unified media: animations in image slots */
    .section-media-animation {
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      width: 100%;
      height: 100%;
    }
    .section-media-animation svg {
      max-width: 100%;
      height: auto;
    }

    /* Unified media: video embeds in image slots */
    .section-media-video {
      position: relative;
      width: 100%;
      padding-bottom: 56.25%;
      height: 0;
      overflow: hidden;
      border-radius: 0.5rem;
    }
    .section-media-video iframe {
      position: absolute;
      top: 0; left: 0;
      width: 100%;
      height: 100%;
      border: 0;
    }

    /* Hero background video */
    .hero-bg-video {
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      width: 100%;
      height: 100%;
      padding-bottom: 0;
      z-index: 0;
      border-radius: 0;
    }
    .hero-bg-video iframe {
      width: 100%;
      height: 100%;
    }

    /* Motion animation image */
    .motion-anim-img {
      width: 100%;
      border-radius: 12px;
      object-fit: cover;
    }
    .motion-anim-video {
      border-radius: 12px;
      overflow: hidden;
    }

    /* Service/pricing animation containers */
    .service-animation {
      width: 100%;
      max-height: 180px;
      margin-bottom: 1rem;
      border-radius: 0.5rem;
    }
    .pricing-animation {
      width: 100%;
      margin-bottom: 1rem;
      border-radius: 0.5rem;
    }
    .gallery-animation {
      width: 100%;
      height: 100%;
      margin: 0 auto 1rem;
      border-radius: 0.5rem;
    }

    @media (max-width: 768px) {
      .site-nav {
        flex-direction: column;
        gap: 0.75rem;
        padding: 0.75rem 1rem;
      }
      .site-nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.75rem 1.25rem;
      }
      .site-nav-links a {
        font-size: 0.85rem;
      }
      .section-hero h1 { font-size: 2rem; }
      .about-container { grid-template-columns: 1fr; }
      .about-container.image-left { direction: ltr; }
      .story-container { grid-template-columns: 1fr; }
      .story-container.image-left { direction: ltr; }
      .story-highlights { justify-content: center; }
      .contactForm-container { grid-template-columns: 1fr; }
      .gallery-grid.cols-3, .gallery-grid.cols-4 {
        grid-template-columns: repeat(2, 1fr);
      }
      .section-video { padding: 3rem 1rem; }
      .section-video h2 { font-size: 1.75rem; }
      .section-gated-resource { padding: 3rem 1rem; }
      .gated-resource-container { grid-template-columns: 1fr; gap: 2rem; }
      .section-motion-animation { padding: 3rem 1rem; }
      .motion-anim-container { grid-template-columns: 1fr; gap: 2rem; }
      .motion-anim-container.anim-right { direction: ltr; }
    }

    /* CSP-compliant utility classes */
    .pricing-item-image { width: 100%; border-radius: 0.5rem; margin-bottom: 1rem; }
    .footer-logo-img { height: 40px; margin-bottom: 1rem; }
    .section-socialLinks { padding: 3rem 1rem; }
    .section-socialLinks h2 { font-size: 1.75rem; }
    .social-links-grid { gap: 1rem; }
    .social-link-item { padding: 0.75rem 1rem; min-width: 70px; }
    .social-link-item i { font-size: 1.5rem; }
    .video-placeholder { display: flex; align-items: center; justify-content: center; height: 100%; color: #9ca3af; font-size: 1.25rem; position: absolute; top: 0; left: 0; right: 0; bottom: 0; }
    .gate-success-msg { margin-bottom: 1rem; color: #065f46; font-weight: 600; }

    
/* Element-level custom styles */

    
/* Navigation custom styles */

    
    
/* Animation & dynamic section styles */

    
  