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

 :root {
     --bg-primary: #0a0a0a;
     --bg-secondary: #111111;
     --bg-card: #151515;
     --accent-gold: #d4af37;
     --accent-gold-light: #e5c25c;
     --text-primary: #ffffff;
     --text-secondary: #b0b0b0;
     --text-muted: #6b6b6b;
     --border-light: #2a2a2a;
     --border-medium: #333333;
     --gradient-gold: linear-gradient(135deg, #d4af37 0%, #b38f2c 100%);
     --gradient-dark: linear-gradient(180deg, #161616 0%, #0f0f0f 100%);
     --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
 }

 body {
     background: var(--bg-primary);
     font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
     color: var(--text-primary);
     line-height: 1.6;
     overflow-x: hidden;
 }

 html {
     scroll-behavior: smooth;
 }

 .container {
     max-width: 1400px;
     margin: 0 auto;
     padding: 0 2rem;
 }

 h1,
 h2,
 h3,
 h4 {
     font-weight: 700;
     line-height: 1.2;
     letter-spacing: -0.02em;
 }

 h2 {
     font-size: 2.5rem;
     margin-bottom: 0.75rem;
     display: inline-flex;
     align-items: center;
     gap: 0.75rem;
 }

 h2 i {
     font-size: 2rem;
     background: var(--gradient-gold);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
 }

 .section-subhead {
     color: var(--text-secondary);
     font-size: 1.1rem;
     max-width: 600px;
     margin-bottom: 3rem;
     font-weight: 300;
 }

 section {
     padding: 5rem 0;
 }

 .navbar {
     position: sticky;
     top: 0;
     z-index: 1000;
     background: rgba(10, 10, 10, 0.96);
     backdrop-filter: blur(12px);
     -webkit-backdrop-filter: blur(12px);
     border-bottom: 1px solid var(--border-light);
     padding: 1rem 0;
 }

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

 .nav-logo {
     font-size: 1.8rem;
     font-weight: 800;
     color: var(--text-primary);
     text-decoration: none;
     position: relative;
 }

 .nav-logo span {
     background: var(--gradient-gold);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
 }

 .nav-logo::after {
     content: '';
     position: absolute;
     bottom: -4px;
     left: 0;
     width: 40px;
     height: 3px;
     background: var(--gradient-gold);
     border-radius: 2px;
 }

 .nav-links {
     display: flex;
     gap: 2.5rem;
     align-items: center;
 }

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

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

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

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

 .nav-links a.active {
     color: var(--accent-gold);
 }

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

 .nav-cta {
     background: var(--gradient-gold);
     color: var(--bg-primary) !important;
     padding: 0.6rem 1.5rem;
     border-radius: 50px;
     font-weight: 600 !important;
 }

 .nav-cta::after {
     display: none !important;
 }

 .nav-cta:hover {
     transform: translateY(-2px);
     box-shadow: 0 10px 20px rgba(212, 175, 55, 0.25);
 }

 .menu-toggle {
     display: none;
     flex-direction: column;
     gap: 6px;
     cursor: pointer;
     z-index: 1002;
     padding: 4px;
 }

 .menu-toggle span {
     width: 28px;
     height: 2.5px;
     background: var(--accent-gold);
     border-radius: 3px;
     transition: var(--transition);
     display: block;
 }

 .menu-toggle.open span:nth-child(1) {
     transform: rotate(45deg) translate(6px, 6px);
 }

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

 .menu-toggle.open span:nth-child(3) {
     transform: rotate(-45deg) translate(6px, -6px);
 }

 .mobile-overlay {
     display: none;
     position: fixed;
     inset: 0;
     background: rgba(0, 0, 0, 0.7);
     z-index: 1000;
     backdrop-filter: blur(4px);
 }

 .mobile-overlay.active {
     display: block;
 }

 .mobile-nav {
     position: fixed;
     top: 0;
     right: -320px;
     width: 300px;
     height: 100vh;
     background: var(--bg-secondary);
     border-left: 1px solid var(--border-medium);
     z-index: 1001;
     padding: 5rem 2rem 2rem;
     transition: right 0.4s cubic-bezier(0.77, 0.2, 0.05, 1);
     display: flex;
     flex-direction: column;
     gap: 0.5rem;
 }

 .mobile-nav.active {
     right: 0;
 }

 .mobile-nav a {
     display: block;
     color: var(--text-secondary);
     text-decoration: none;
     font-size: 1.4rem;
     font-weight: 600;
     padding: 0.75rem 0;
     border-bottom: 1px solid var(--border-light);
     transition: var(--transition);
 }

 .mobile-nav a:hover {
     color: var(--accent-gold);
     transform: translateX(8px);
 }

 .mobile-nav .mobile-cta {
     margin-top: 1.5rem;
     background: var(--gradient-gold);
     color: var(--bg-primary) !important;
     text-align: center;
     border-radius: 50px;
     padding: 0.9rem !important;
     border: none;
 }

 .hero {
     padding: 4rem 0 5rem;
     position: relative;
     overflow: hidden;
 }

 .hero::before {
     content: '';
     position: absolute;
     top: -50%;
     right: -10%;
     width: 600px;
     height: 600px;
     background: radial-gradient(circle, rgba(212, 175, 55, 0.04) 0%, transparent 70%);
     border-radius: 50%;
     pointer-events: none;
 }

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

 .hero-label {
     display: flex;
     align-items: center;
     gap: 1rem;
     margin-bottom: 1.5rem;
 }

 .hero-avatar {
     width: 56px;
     height: 56px;
     border-radius: 50%;
     padding: 2px;
     background: var(--gradient-gold);
     flex-shrink: 0;
 }

 .hero-avatar img {
     width: 100%;
     height: 100%;
     border-radius: 50%;
     object-fit: cover;
     border: 2px solid var(--bg-primary);
 }

 .hero-title-tag {
     color: var(--text-secondary);
     font-size: 0.95rem;
 }

 .hero-title-tag strong {
     color: var(--accent-gold);
 }

 h1 {
     font-size: 3.6rem;
     line-height: 1.1;
     margin-bottom: 1.5rem;
     font-weight: 800;
 }

 h1 .gold {
     color: var(--accent-gold);
 }

 .hero-tagline {
     font-size: 1.15rem;
     color: var(--text-secondary);
     max-width: 480px;
     margin-bottom: 2.5rem;
     font-weight: 300;
 }

 .btn-group {
     display: flex;
     gap: 1rem;
     flex-wrap: wrap;
 }

 .btn {
     display: inline-flex;
     align-items: center;
     gap: 0.5rem;
     padding: 0.9rem 2rem;
     border-radius: 50px;
     font-weight: 600;
     text-decoration: none;
     transition: var(--transition);
     border: none;
     cursor: pointer;
     font-size: 1rem;
     font-family: inherit;
 }

 .btn-primary {
     background: var(--gradient-gold);
     color: var(--bg-primary);
 }

 .btn-primary:hover {
     transform: translateY(-3px);
     box-shadow: 0 12px 28px rgba(212, 175, 55, 0.3);
 }

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

 .btn-outline:hover {
     background: var(--accent-gold);
     color: var(--bg-primary);
     transform: translateY(-3px);
 }

 .trust-badge {
     display: inline-flex;
     align-items: center;
     gap: 0.5rem;
     background: rgba(212, 175, 55, 0.1);
     border: 1px solid rgba(212, 175, 55, 0.3);
     padding: 0.5rem 1.5rem;
     border-radius: 50px;
     margin-top: 2rem;
     font-weight: 500;
     font-size: 0.95rem;
 }

 .trust-badge i {
     color: var(--accent-gold);
 }

 .hero-poster {
     position: relative;
     border-radius: 24px;
     overflow: hidden;
     aspect-ratio: 16/9;
     box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.8);
     border: 1px solid var(--border-medium);
 }

 .hero-poster img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform 0.6s ease;
 }

 .hero-poster:hover img {
     transform: scale(1.04);
 }

 .play-btn {
     position: absolute;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
     width: 80px;
     height: 80px;
     background: rgba(212, 175, 55, 0.92);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     cursor: pointer;
     transition: var(--transition);
     border: none;
     z-index: 5;
 }

 .play-btn i {
     font-size: 2.2rem;
     color: var(--bg-primary);
     margin-left: 4px;
 }

 .play-btn:hover {
     transform: translate(-50%, -50%) scale(1.12);
     box-shadow: 0 0 40px rgba(212, 175, 55, 0.5);
 }

 .client-strip {
     display: flex;
     align-items: center;
     gap: 2rem;
     margin-top: 3rem;
     padding-top: 2rem;
     border-top: 1px solid var(--border-light);
     flex-wrap: wrap;
 }

 .client-strip-label {
     color: var(--text-muted);
     font-size: 0.85rem;
     text-transform: uppercase;
     letter-spacing: 1.5px;
     white-space: nowrap;
 }

 .client-logos {
     display: flex;
     gap: 1.5rem;
     align-items: center;
 }

 .client-logos span {
     color: var(--text-muted);
     font-size: 0.9rem;
     font-weight: 600;
     letter-spacing: 0.5px;
     opacity: 0.7;
     transition: var(--transition);
 }

 .client-logos span:hover {
     opacity: 1;
     color: var(--accent-gold);
 }

 #work {
     padding-top: 4rem;
 }

 .filter-bar {
     display: flex;
     gap: 1.5rem;
     flex-wrap: wrap;
     margin: 2.5rem 0 2rem;
     padding-bottom: 1rem;
     border-bottom: 1px solid var(--border-light);
 }

 .filter-btn {
     background: none;
     border: none;
     color: var(--text-secondary);
     font-weight: 500;
     cursor: pointer;
     padding: 0.4rem 0;
     position: relative;
     font-size: 1rem;
     font-family: inherit;
     transition: var(--transition);
 }

 .filter-btn::after {
     content: '';
     position: absolute;
     bottom: -1px;
     left: 0;
     width: 0;
     height: 2px;
     background: var(--accent-gold);
     transition: width 0.3s ease;
 }

 .filter-btn:hover {
     color: var(--text-primary);
 }

 .filter-btn:hover::after,
 .filter-btn.active::after {
     width: 100%;
 }

 .filter-btn.active {
     color: var(--accent-gold);
 }

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

 .project-card {
     background: var(--bg-card);
     border-radius: 20px;
     overflow: hidden;
     border: 1px solid var(--border-light);
     transition: var(--transition);
     cursor: pointer;
 }

 .project-card:hover {
     transform: translateY(-8px);
     border-color: var(--accent-gold);
     box-shadow: 0 20px 40px -10px rgba(212, 175, 55, 0.18);
 }

 .card-media {
     position: relative;
     aspect-ratio: 16/9;
     overflow: hidden;
 }

 .card-media img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform 0.6s ease;
 }

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

 .play-overlay {
     position: absolute;
     inset: 0;
     background: rgba(0, 0, 0, 0.35);
     display: flex;
     align-items: center;
     justify-content: center;
     opacity: 0;
     transition: var(--transition);
 }

 .play-overlay i {
     font-size: 3rem;
     color: #fff;
     filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.6));
 }

 .project-card:hover .play-overlay {
     opacity: 1;
 }

 .platform-badge {
     position: absolute;
     top: 0.9rem;
     right: 0.9rem;
     background: rgba(0, 0, 0, 0.72);
     backdrop-filter: blur(4px);
     padding: 0.3rem 0.9rem;
     border-radius: 50px;
     font-size: 0.75rem;
     border: 1px solid rgba(212, 175, 55, 0.5);
     color: var(--accent-gold);
     z-index: 5;
 }

 .card-caption {
     padding: 1.4rem;
 }

 .card-caption h3 {
     font-size: 1.2rem;
     margin-bottom: 0.25rem;
 }

 .card-caption .card-role {
     color: var(--accent-gold);
     font-size: 0.75rem;
     text-transform: uppercase;
     letter-spacing: 1px;
     font-weight: 600;
 }

 .card-caption p {
     color: var(--text-secondary);
     font-size: 0.88rem;
     margin-top: 0.4rem;
     line-height: 1.5;
 }

 .pricing-callout {
     background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), rgba(212, 175, 55, 0.02));
     border: 1px solid rgba(212, 175, 55, 0.4);
     border-radius: 20px;
     padding: 2.5rem;
     margin: 3rem 0;
     display: flex;
     align-items: center;
     justify-content: space-between;
     gap: 2rem;
     flex-wrap: wrap;
 }

 .pricing-callout-text h3 {
     font-size: 2rem;
     color: var(--accent-gold);
     margin-bottom: 0.3rem;
 }

 .pricing-callout-text p {
     color: var(--text-secondary);
 }

 #process {
     background: var(--gradient-dark);
     border-radius: 40px;
     margin: 0;
 }

 .process-inner {
     text-align: center;
 }

 .workflow-steps {
     display: grid;
     grid-template-columns: repeat(5, 1fr);
     gap: 1rem;
     margin-top: 3rem;
     position: relative;
 }

 .workflow-steps::before {
     content: '';
     position: absolute;
     top: 40px;
     left: 10%;
     right: 10%;
     height: 2px;
     background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
     opacity: 0.3;
 }

 .wf-step {
     text-align: center;
     position: relative;
 }

 .wf-step:not(:last-child)::after {
     content: '→';
     position: absolute;
     right: -0.5rem;
     top: 24px;
     color: var(--accent-gold);
     font-size: 1.3rem;
     opacity: 0.6;
 }

 .wf-icon {
     width: 80px;
     height: 80px;
     background: rgba(212, 175, 55, 0.1);
     border: 1px solid rgba(212, 175, 55, 0.5);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     margin: 0 auto 1.25rem;
     transition: var(--transition);
 }

 .wf-icon i {
     font-size: 2rem;
     color: var(--accent-gold);
 }

 .wf-step:hover .wf-icon {
     background: rgba(212, 175, 55, 0.2);
     transform: scale(1.08);
 }

 .wf-step h3 {
     font-size: 1rem;
     margin-bottom: 0.4rem;
 }

 .wf-step p {
     color: var(--text-secondary);
     font-size: 0.85rem;
 }

 .services-grid {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: 1.5rem;
     margin-top: 2.5rem;
 }

 .service-card {
     background: var(--bg-card);
     padding: 2rem 1.5rem;
     border-radius: 20px;
     border: 1px solid var(--border-light);
     transition: var(--transition);
     text-align: center;
 }

 .service-card:hover {
     border-color: var(--accent-gold);
     transform: translateY(-6px);
     box-shadow: 0 16px 32px -8px rgba(212, 175, 55, 0.15);
 }

 .service-icon {
     width: 60px;
     height: 60px;
     background: rgba(212, 175, 55, 0.1);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     margin: 0 auto 1.25rem;
 }

 .service-icon i {
     font-size: 1.6rem;
     color: var(--accent-gold);
 }

 .service-card h3 {
     font-size: 1.05rem;
     margin-bottom: 0.5rem;
 }

 .service-card p {
     color: var(--text-secondary);
     font-size: 0.85rem;
     line-height: 1.5;
 }

 .about-grid {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 4rem;
     align-items: start;
 }

 .about-bio {
     font-size: 1.1rem;
     color: var(--text-secondary);
     line-height: 1.8;
     margin-bottom: 2rem;
 }

 .tool-tags {
     display: flex;
     flex-wrap: wrap;
     gap: 0.75rem;
     margin-bottom: 2rem;
 }

 .tool-tag {
     background: var(--bg-card);
     border: 1px solid var(--border-light);
     padding: 0.6rem 1.25rem;
     border-radius: 50px;
     font-size: 0.88rem;
     display: flex;
     align-items: center;
     gap: 0.5rem;
     transition: var(--transition);
 }

 .tool-tag:hover {
     border-color: var(--accent-gold);
 }

 .tool-tag i {
     color: var(--accent-gold);
 }

 .metrics-card {
     background: var(--bg-card);
     border-radius: 24px;
     padding: 2.5rem;
     border: 1px solid var(--border-light);
 }

 .metric-item {
     margin-bottom: 2rem;
     padding-bottom: 2rem;
     border-bottom: 1px solid var(--border-light);
 }

 .metric-item:last-child {
     margin-bottom: 0;
     padding-bottom: 0;
     border-bottom: none;
 }

 .metric-number {
     font-size: 3rem;
     font-weight: 800;
     background: var(--gradient-gold);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     display: block;
     line-height: 1;
     margin-bottom: 0.25rem;
 }

 .metric-label {
     color: var(--text-secondary);
     font-size: 0.95rem;
 }

 #testimonials {
     padding-top: 0;
 }

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

 .testimonial {
     background: var(--bg-card);
     padding: 2rem;
     border-radius: 20px;
     border: 1px solid var(--border-light);
     transition: var(--transition);
 }

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

 .testi-header {
     display: flex;
     align-items: center;
     gap: 1rem;
     margin-bottom: 1.25rem;
 }

 .testi-avatar {
     width: 50px;
     height: 50px;
     border-radius: 50%;
     background: var(--gradient-gold);
     padding: 2px;
     flex-shrink: 0;
 }

 .testi-avatar img {
     width: 100%;
     height: 100%;
     border-radius: 50%;
     object-fit: cover;
 }

 .testi-name {
     font-size: 1rem;
     font-weight: 600;
     margin-bottom: 0.2rem;
 }

 .testi-role {
     color: var(--text-secondary);
     font-size: 0.8rem;
 }

 .testi-stars {
     color: var(--accent-gold);
     margin-bottom: 0.75rem;
     font-size: 0.9rem;
 }

 .testi-quote {
     color: var(--text-secondary);
     font-style: italic;
     line-height: 1.65;
     font-size: 0.92rem;
 }

 .social-grid {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: 1.5rem;
     margin-top: 2.5rem;
 }

 .social-card {
     background: var(--bg-card);
     border: 1px solid var(--border-light);
     border-radius: 16px;
     padding: 2rem 1rem;
     display: flex;
     flex-direction: column;
     align-items: center;
     gap: 0.75rem;
     text-decoration: none;
     color: var(--text-primary);
     transition: var(--transition);
 }

 .social-card:hover {
     border-color: var(--accent-gold);
     transform: translateY(-6px);
     box-shadow: 0 14px 28px -8px rgba(212, 175, 55, 0.15);
 }

 .social-icon {
     width: 56px;
     height: 56px;
     background: rgba(212, 175, 55, 0.1);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .social-icon i {
     font-size: 1.6rem;
     color: var(--accent-gold);
 }

 .social-card .platform-name {
     font-weight: 600;
     font-size: 0.95rem;
 }

 .social-card .handle {
     font-size: 0.78rem;
     color: var(--text-muted);
 }

 .contact-box {
     background: var(--gradient-dark);
     border: 1px solid var(--border-medium);
     border-radius: 32px;
     padding: 3.5rem;
     display: flex;
     justify-content: space-between;
     align-items: center;
     gap: 3rem;
     flex-wrap: wrap;
 }

 .contact-left {
     flex: 1;
     min-width: 260px;
 }

 .contact-item {
     display: flex;
     align-items: center;
     gap: 1rem;
     margin-bottom: 1.25rem;
     padding: 0.75rem 1.25rem;
     background: rgba(255, 255, 255, 0.03);
     border: 1px solid var(--border-light);
     border-radius: 50px;
     font-size: 0.95rem;
 }

 .contact-item i {
     color: var(--accent-gold);
     width: 20px;
     text-align: center;
     flex-shrink: 0;
 }

 .copy-btn {
     background: none;
     border: 1px solid var(--border-medium);
     color: var(--text-secondary);
     padding: 0.25rem 0.9rem;
     border-radius: 50px;
     cursor: pointer;
     margin-left: auto;
     transition: var(--transition);
     font-size: 0.78rem;
     font-family: inherit;
     white-space: nowrap;
 }

 .copy-btn:hover {
     background: var(--accent-gold);
     color: var(--bg-primary);
     border-color: var(--accent-gold);
 }

 .contact-right {
     display: flex;
     flex-direction: column;
     gap: 1rem;
     min-width: 200px;
 }

 .contact-form-container {
     flex: 1;
     min-width: 300px;
     max-width: 500px;
 }

 .contact-form {
     display: flex;
     flex-direction: column;
     gap: 1.25rem;
 }

 .form-group {
     display: flex;
     flex-direction: column;
     gap: 0.5rem;
 }

 .form-group label {
     color: var(--text-secondary);
     font-size: 0.9rem;
     font-weight: 500;
 }

 .form-group input,
 .form-group textarea {
     background: rgba(255, 255, 255, 0.05);
     border: 1px solid var(--border-light);
     border-radius: 12px;
     padding: 0.875rem 1rem;
     color: var(--text-primary);
     font-family: inherit;
     font-size: 0.95rem;
     transition: var(--transition);
 }

 .form-group input:focus,
 .form-group textarea:focus {
     outline: none;
     border-color: var(--accent-gold);
     background: rgba(255, 255, 255, 0.08);
 }

 .form-group input::placeholder,
 .form-group textarea::placeholder {
     color: var(--text-muted);
 }

 .form-group textarea {
     min-height: 120px;
     resize: vertical;
 }

 .submit-btn {
     background: var(--gradient-gold);
     color: var(--bg-primary);
     border: none;
     padding: 1rem 2rem;
     border-radius: 50px;
     font-weight: 600;
     font-size: 1rem;
     cursor: pointer;
     transition: var(--transition);
     display: inline-flex;
     align-items: center;
     justify-content: center;
     gap: 0.5rem;
 }

 .submit-btn:hover {
     transform: translateY(-2px);
     box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
 }

 .submit-btn:disabled {
     opacity: 0.6;
     cursor: not-allowed;
     transform: none;
 }

 .toast {
     position: fixed;
     bottom: 24px;
     left: 50%;
     transform: translateX(-50%) translateY(20px);
     background: var(--accent-gold);
     color: var(--bg-primary);
     padding: 0.8rem 2rem;
     border-radius: 50px;
     font-weight: 600;
     z-index: 3000;
     opacity: 0;
     transition: all 0.3s ease;
     pointer-events: none;
 }

 .toast.show {
     opacity: 1;
     transform: translateX(-50%) translateY(0);
 }

 .modal {
     display: none;
     position: fixed;
     inset: 0;
     background: rgba(0, 0, 0, 0.92);
     z-index: 2000;
     align-items: center;
     justify-content: center;
     padding: 1rem;
 }

 .modal.active {
     display: flex;
 }

 .modal-content {
     position: relative;
     width: 90%;
     max-width: 1000px;
     background: var(--bg-secondary);
     border-radius: 24px;
     overflow: hidden;
     border: 1px solid var(--border-medium);
     animation: modalIn 0.3s ease;
 }

 @keyframes modalIn {
     from {
         opacity: 0;
         transform: scale(0.94);
     }

     to {
         opacity: 1;
         transform: scale(1);
     }
 }

 .modal-close {
     position: absolute;
     top: 1rem;
     right: 1rem;
     width: 42px;
     height: 42px;
     background: rgba(255, 255, 255, 0.12);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     cursor: pointer;
     z-index: 10;
     transition: var(--transition);
     border: none;
     color: var(--text-primary);
     font-size: 1.1rem;
 }

 .modal-close:hover {
     background: var(--accent-gold);
     color: var(--bg-primary);
 }

 .modal-video {
     width: 100%;
     aspect-ratio: 16/9;
     background: #000;
 }

 .modal-video iframe {
     width: 100%;
     height: 100%;
     border: none;
 }

 .modal-info {
     padding: 1.5rem;
     border-top: 1px solid var(--border-light);
 }

 .modal-info h3 {
     margin-bottom: 0.3rem;
 }

 .modal-info p {
     color: var(--text-secondary);
     font-size: 0.92rem;
 }

 .floating-wa {
     position: fixed;
     bottom: 24px;
     right: 24px;
     width: 60px;
     height: 60px;
     background: #25D366;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     box-shadow: 0 6px 24px rgba(37, 211, 102, 0.35);
     z-index: 900;
     transition: var(--transition);
     text-decoration: none;
 }

 .floating-wa:hover {
     transform: scale(1.12);
     box-shadow: 0 8px 30px rgba(37, 211, 102, 0.45);
 }

 .floating-wa i {
     font-size: 2rem;
     color: #fff;
 }

 .back-to-top {
     position: fixed;
     bottom: 96px;
     right: 24px;
     width: 48px;
     height: 48px;
     background: var(--gradient-gold);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     cursor: pointer;
     opacity: 0;
     visibility: hidden;
     transition: var(--transition);
     z-index: 900;
     border: none;
 }

 .back-to-top.visible {
     opacity: 1;
     visibility: visible;
 }

 .back-to-top:hover {
     transform: translateY(-4px);
     box-shadow: 0 10px 24px rgba(212, 175, 55, 0.35);
 }

 .back-to-top i {
     color: var(--bg-primary);
     font-size: 1.1rem;
 }

 footer {
     text-align: center;
     color: var(--text-muted);
     padding: 3rem 0;
     font-size: 0.9rem;
     border-top: 1px solid var(--border-light);
     margin-top: 2rem;
 }

 footer p+p {
     margin-top: 0.5rem;
 }

 .lazy {
     filter: blur(10px);
     transition: filter 0.4s ease;
 }

 .lazy.loaded {
     filter: blur(0);
 }

 @keyframes fadeUp {
     from {
         opacity: 0;
         transform: translateY(24px);
     }

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

 .fade-up {
     animation: fadeUp 0.6s ease both;
 }

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

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

     .workflow-steps {
         grid-template-columns: repeat(3, 1fr);
     }

     .wf-step:nth-child(3)::after {
         display: none;
     }
 }

 @media (max-width: 1024px) {
     .hero-row {
         grid-template-columns: 1fr;
     }

     .hero-label,
     .btn-group,
     .trust-badge {
         justify-content: center;
     }

     .hero-content {
         text-align: center;
     }

     .hero-tagline {
         margin-left: auto;
         margin-right: auto;
     }

     .about-grid {
         grid-template-columns: 1fr;
         gap: 2.5rem;
     }

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

     .social-grid {
         grid-template-columns: repeat(4, 1fr);
     }

     .contact-box {
         flex-direction: column;
         align-items: flex-start;
     }

     h1 {
         font-size: 2.8rem;
     }
 }

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

     .menu-toggle {
         display: flex;
     }

     h2 {
         font-size: 2rem;
     }

     h1 {
         font-size: 2.2rem;
     }

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

     .workflow-steps {
         grid-template-columns: 1fr;
     }

     .wf-step::after {
         display: none;
     }

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

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

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

     .pricing-callout {
         flex-direction: column;
         text-align: center;
     }

     section {
         padding: 3.5rem 0;
     }

     .contact-form-container {
         max-width: 100%;
     }
 }

 @media (max-width: 480px) {
     .services-grid {
         grid-template-columns: 1fr;
     }

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

     .btn-group {
         flex-direction: column;
     }

     .btn {
         justify-content: center;
     }

     .contact-box {
         padding: 2rem 1.5rem;
     }

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

     .awards-list {
         grid-template-columns: 1fr 1fr;
     }

     #colour-grade .ba-labels {
         font-size: 0.75rem;
     }
 }

 #scrollProgressBar {
     position: fixed;
     top: 0;
     left: 0;
     width: 0%;
     height: 3px;
     background: var(--gradient-gold);
     z-index: 9999;
     transition: width 0.1s linear;
 }

 .available-badge {
     display: inline-flex;
     align-items: center;
     gap: 0.5rem;
     background: rgba(16, 185, 129, 0.12);
     border: 1px solid rgba(16, 185, 129, 0.35);
     color: #10b981;
     padding: 0.3rem 0.9rem;
     border-radius: 50px;
     font-size: 0.8rem;
     font-weight: 600;
     margin-bottom: 1rem;
 }

 .available-dot {
     width: 8px;
     height: 8px;
     background: #10b981;
     border-radius: 50%;
     animation: pulse-green 2s infinite;
 }

 @keyframes pulse-green {

     0%,
     100% {
         box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.5);
     }

     50% {
         box-shadow: 0 0 0 6px rgba(16, 185, 129, 0);
     }
 }

 .client-pill {
     display: inline-flex;
     align-items: center;
     gap: 0.4rem;
     background: rgba(255, 255, 255, 0.04);
     border: 1px solid rgba(255, 255, 255, 0.1);
     color: var(--text-secondary);
     padding: 0.3rem 0.9rem;
     border-radius: 50px;
     font-size: 0.82rem;
     font-weight: 600;
     letter-spacing: 0.3px;
     transition: var(--transition);
 }

 .client-pill:hover {
     border-color: rgba(212, 175, 55, 0.4);
     color: var(--accent-gold);
 }

 .filter-count {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     background: rgba(212, 175, 55, 0.15);
     color: var(--accent-gold);
     font-size: 0.7rem;
     font-weight: 700;
     padding: 0.1rem 0.45rem;
     border-radius: 50px;
     margin-left: 0.3rem;
     line-height: 1.4;
 }

 #pricing {
     padding-top: 5rem;
 }

 .pricing-intro-banner {
     background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.03));
     border: 1px solid rgba(212, 175, 55, 0.4);
     border-radius: 20px;
     padding: 2rem 2.5rem;
     display: flex;
     align-items: center;
     justify-content: space-between;
     gap: 2rem;
     flex-wrap: wrap;
     margin-bottom: 3.5rem;
 }

 .pricing-intro-banner h3 {
     font-size: 1.8rem;
     color: var(--accent-gold);
     margin-bottom: 0.25rem;
 }

 .pricing-intro-banner p {
     color: var(--text-secondary);
 }

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

 .pricing-card {
     background: var(--bg-card);
     border: 1px solid var(--border-light);
     border-radius: 24px;
     padding: 2.5rem 2rem;
     display: flex;
     flex-direction: column;
     position: relative;
     transition: var(--transition);
 }

 .pricing-card:hover {
     transform: translateY(-8px);
     box-shadow: 0 20px 40px -10px rgba(212, 175, 55, 0.15);
 }

 .pricing-card.popular {
     border-color: var(--accent-gold);
     box-shadow: 0 0 0 1px var(--accent-gold), 0 24px 48px -12px rgba(212, 175, 55, 0.2);
 }

 .pricing-popular-tag {
     position: absolute;
     top: -14px;
     left: 50%;
     transform: translateX(-50%);
     background: var(--gradient-gold);
     color: var(--bg-primary);
     font-size: 0.72rem;
     font-weight: 700;
     padding: 0.3rem 1.1rem;
     border-radius: 50px;
     text-transform: uppercase;
     letter-spacing: 1px;
     white-space: nowrap;
 }

 .pricing-tier {
     font-size: 0.78rem;
     font-weight: 700;
     text-transform: uppercase;
     letter-spacing: 1.5px;
     color: var(--accent-gold);
     margin-bottom: 0.75rem;
 }

 .pricing-price {
     font-size: 3rem;
     font-weight: 800;
     line-height: 1;
     margin-bottom: 0.25rem;
 }

 .pricing-price sup {
     font-size: 1.4rem;
     vertical-align: super;
     font-weight: 600;
 }

 .pricing-price .plus {
     font-size: 1.8rem;
     font-weight: 600;
 }

 .pricing-desc {
     color: var(--text-secondary);
     font-size: 0.88rem;
     margin-bottom: 2rem;
     padding-bottom: 2rem;
     border-bottom: 1px solid var(--border-light);
 }

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

 .pricing-features li {
     display: flex;
     align-items: flex-start;
     gap: 0.75rem;
     color: var(--text-secondary);
     font-size: 0.9rem;
     margin-bottom: 0.9rem;
 }

 .pricing-features li i {
     color: var(--accent-gold);
     margin-top: 2px;
     flex-shrink: 0;
     font-size: 0.85rem;
 }

 .pricing-cta {
     display: block;
     text-align: center;
     padding: 0.9rem;
     border-radius: 50px;
     font-weight: 600;
     text-decoration: none;
     transition: var(--transition);
     font-size: 0.95rem;
 }

 .pricing-card:not(.popular) .pricing-cta {
     background: transparent;
     border: 1.5px solid var(--accent-gold);
     color: var(--accent-gold);
 }

 .pricing-card:not(.popular) .pricing-cta:hover {
     background: var(--accent-gold);
     color: var(--bg-primary);
 }

 .pricing-card.popular .pricing-cta {
     background: var(--gradient-gold);
     color: var(--bg-primary);
     border: none;
 }

 .pricing-card.popular .pricing-cta:hover {
     transform: translateY(-2px);
     box-shadow: 0 10px 24px rgba(212, 175, 55, 0.3);
 }

 @media (max-width: 900px) {
     .pricing-grid {
         grid-template-columns: 1fr;
         max-width: 420px;
         margin: 0 auto;
     }
 }

 #awards {
     padding-top: 0;
 }

 .awards-list {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: 1.5rem;
     margin-top: 2.5rem;
 }

 .award-card {
     background: var(--bg-card);
     border: 1px solid var(--border-light);
     border-radius: 20px;
     padding: 2rem 1.5rem;
     text-align: center;
     transition: var(--transition);
 }

 .award-card:hover {
     border-color: var(--accent-gold);
     transform: translateY(-6px);
     box-shadow: 0 16px 32px -8px rgba(212, 175, 55, 0.15);
 }

 .award-icon {
     width: 60px;
     height: 60px;
     background: rgba(212, 175, 55, 0.1);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     margin: 0 auto 1.25rem;
 }

 .award-icon i {
     font-size: 1.6rem;
     color: var(--accent-gold);
 }

 .award-name {
     font-size: 1rem;
     font-weight: 700;
     margin-bottom: 0.35rem;
 }

 .award-event {
     color: var(--text-secondary);
     font-size: 0.82rem;
     margin-bottom: 0.5rem;
 }

 .award-year {
     display: inline-block;
     background: rgba(212, 175, 55, 0.12);
     color: var(--accent-gold);
     font-size: 0.75rem;
     font-weight: 700;
     padding: 0.2rem 0.7rem;
     border-radius: 50px;
 }

 @media (max-width: 900px) {
     .awards-list {
         grid-template-columns: repeat(2, 1fr);
     }
 }

 #faq {
     padding-top: 0;
 }

 .faq-container {
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: center;
 }

 .faq-list {
     margin-top: 2.5rem;
     max-width: 860px;
 }

 .faq-item {
     border-bottom: 1px solid var(--border-light);
     overflow: hidden;
     max-width: 860px;
 }

 .faq-question {
     display: flex;
     align-items: center;
     justify-content: space-between;
     gap: 1rem;
     padding: 1.5rem 0;
     cursor: pointer;
     font-weight: 600;
     font-size: 1rem;
     color: var(--text-primary);
     background: none;
     border: none;
     width: 100%;
     text-align: left;
     font-family: inherit;
     transition: color 0.25s ease;
 }

 .faq-question:hover {
     color: var(--accent-gold);
 }

 .faq-icon {
     flex-shrink: 0;
     width: 28px;
     height: 28px;
     background: rgba(212, 175, 55, 0.1);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     color: var(--accent-gold);
     font-size: 0.75rem;
     transition: transform 0.3s ease, background 0.3s ease;
 }

 .faq-item.open .faq-icon {
     transform: rotate(45deg);
     background: rgba(212, 175, 55, 0.2);
 }

 .faq-answer {
     max-height: 0;
     overflow: hidden;
     transition: max-height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
 }

 .faq-answer-inner {
     padding: 0 0 1.5rem;
     color: var(--text-secondary);
     font-size: 0.95rem;
     line-height: 1.75;
 }

 #colour-grade {
     padding-top: 0;
 }

 .ba-container {
     position: relative;
     width: 100%;
     max-width: 900px;
     margin: 2.5rem auto 0;
     border-radius: 20px;
     overflow: hidden;
     border: 1px solid var(--border-medium);
     cursor: ew-resize;
     user-select: none;
     aspect-ratio: 16/9;
     box-shadow: 0 24px 60px -16px rgba(0, 0, 0, 0.7);
 }

 .ba-before,
 .ba-after {
     position: absolute;
     inset: 0;
     width: 100%;
     height: 100%;
 }

 .ba-after {
     clip-path: inset(0 0 0 50%);
 }

 .ba-before img,
 .ba-after img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     display: block;
     pointer-events: none;
 }

 .ba-before img {
     filter: none;
 }

 .ba-divider {
     position: absolute;
     top: 0;
     bottom: 0;
     left: 50%;
     width: 2px;
     background: var(--accent-gold);
     transform: translateX(-50%);
     z-index: 10;
     pointer-events: none;
 }

 .ba-handle {
     position: absolute;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
     width: 44px;
     height: 44px;
     background: var(--accent-gold);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     z-index: 11;
     cursor: ew-resize;
     box-shadow: 0 4px 16px rgba(0, 0, 0, 0.6);
     pointer-events: none;
 }

 .ba-handle i {
     color: var(--bg-primary);
     font-size: 1rem;
 }

 .ba-labels {
     position: absolute;
     bottom: 1rem;
     left: 0;
     right: 0;
     display: flex;
     justify-content: space-between;
     padding: 0 1.25rem;
     z-index: 12;
     pointer-events: none;
 }

 .ba-label {
     background: rgba(0, 0, 0, 0.7);
     backdrop-filter: blur(4px);
     color: #fff;
     font-size: 0.78rem;
     font-weight: 700;
     padding: 0.3rem 0.9rem;
     border-radius: 50px;
     text-transform: uppercase;
     letter-spacing: 1px;
     border: 1px solid rgba(255, 255, 255, 0.12);
 }

 .ba-label.graded {
     border-color: rgba(212, 175, 55, 0.5);
     color: var(--accent-gold);
 }

 .ba-instruction {
     text-align: center;
     color: var(--text-muted);
     font-size: 0.82rem;
     margin-top: 1rem;
 }

 .ba-instruction i {
     color: var(--accent-gold);
     margin-right: 0.3rem;
 }