 /* ============================
       BRAND TOKENS
    ============================ */
 :root {
     --pink: #FF5AC2;
     --blue: #0055F1;
     --purple: #451C92;
     --navy: #1B1464;
     --black: #0A0B0D;
     --white: #FFFFFF;
     --lavender: #F1DFF2;
     --orchid: #C669C2;
     --teal: #0FD8BB;
     --green: #00EE60;

     --grad-brand: linear-gradient(135deg, #FF5AC2 0%, #451C92 50%, #0055F1 100%);
     --grad-dark: linear-gradient(135deg, #1B1464 0%, #0A0B0D 100%);
     --grad-glow: radial-gradient(ellipse at 50% 0%, rgba(255, 90, 194, 0.18) 0%, rgba(69, 28, 146, 0.12) 40%, transparent 70%);

     --font-head: 'Bricolage Grotesque', sans-serif;
     --font-body: 'Bricolage Grotesque', sans-serif;
     --font-mono: 'DM Mono', monospace;

     --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
     --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
 }

 /* ============================
       RESET & BASE
    ============================ */
 *,
 *::before,
 *::after {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }

 html {
     scroll-behavior: smooth;
     font-size: 16px;
 }

 body {
     font-family: var(--font-body);
     background: var(--black);
     color: var(--white);
     overflow-x: hidden;
     -webkit-font-smoothing: antialiased;
 }

 /* Grain overlay */
 body::after {
     content: '';
     position: fixed;
     inset: 0;
     pointer-events: none;
     z-index: 9999;
     opacity: 0.025;
     background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
 }

 /* ============================
       SCROLLBAR
    ============================ */
 ::-webkit-scrollbar {
     width: 4px;
 }

 ::-webkit-scrollbar-track {
     background: var(--black);
 }

 ::-webkit-scrollbar-thumb {
     background: var(--purple);
     border-radius: 2px;
 }

 /* ============================
       NAV
    ============================ */
 nav {
     position: fixed;
     top: 0;
     left: 0;
     right: 0;
     z-index: 100;
     display: flex;
     align-items: center;
     justify-content: space-between;
     padding: 1.25rem 5%;
     transition: background 0.4s var(--ease-in-out), border-color 0.4s;
     border-bottom: 1px solid transparent;
 }

 nav.scrolled {
     background: rgba(10, 11, 13, 0.94);
     backdrop-filter: blur(20px);
     -webkit-backdrop-filter: blur(20px);
     border-bottom-color: rgba(255, 90, 194, 0.12);
 }

 .nav-logo {
     display: flex;
     align-items: center;
     gap: 0.75rem;
     text-decoration: none;
 }

 .logo-img {
     width: 180px;
 }

 .nav-logo-text {
     font-size: 1.35rem;
     font-weight: 700;
     letter-spacing: -0.02em;
     color: var(--white);
 }

 .nav-logo-text span {
     background: var(--grad-brand);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
 }

 .nav-links {
     display: flex;
     align-items: center;
     gap: 2.5rem;
     list-style: none;
 }

 .nav-links a {
     font-size: 0.78rem;
     font-weight: 500;
     letter-spacing: 0.12em;
     text-transform: uppercase;
     color: rgba(255, 255, 255, 0.55);
     text-decoration: none;
     transition: color 0.2s;
 }

 .nav-links a:hover {
     color: var(--white);
 }

 .btn-nav {
     display: inline-flex;
     align-items: center;
     gap: 0.5rem;
     padding: 0.6rem 1.4rem;
     font-size: 0.75rem;
     font-weight: 600;
     letter-spacing: 0.1em;
     text-transform: uppercase;
     text-decoration: none;
     color: var(--white);
     background: var(--grad-brand);
     border-radius: 0;
     clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 0 100%);
     transition: opacity 0.25s, transform 0.25s;
 }

 .btn-nav:hover {
     opacity: 0.88;
     transform: translateY(-1px);
 }

 /* Mobile toggle */
 .nav-toggle {
     display: none;
     flex-direction: column;
     gap: 5px;
     cursor: pointer;
     padding: 4px;
     background: none;
     border: none;
 }

 .nav-toggle span {
     display: block;
     width: 24px;
     height: 2px;
     background: var(--white);
     transition: all 0.3s;
 }

 /* ============================
       HERO
    ============================ */
 .hero {
     position: relative;
     min-height: 100vh;
     display: flex;
     flex-direction: column;
     justify-content: center;
     padding: 4rem 8% 8vh;
     overflow: hidden;
 }

 .hero-bg {
     position: absolute;
     inset: 0;
     background: var(--black);
 }

 .hero-bg::before {
     content: '';
     position: absolute;
     inset: 0;
     background:
         radial-gradient(ellipse 80% 60% at 15% 80%, rgba(69, 28, 146, 0.35) 0%, transparent 60%),
         radial-gradient(ellipse 60% 50% at 85% 20%, rgba(255, 90, 194, 0.12) 0%, transparent 55%),
         radial-gradient(ellipse 50% 40% at 70% 90%, rgba(0, 85, 241, 0.15) 0%, transparent 50%);
 }

 /* Animated orb */
 .hero-orb {
     position: absolute;
     top: -15%;
     right: -10%;
     width: 65vw;
     height: 65vw;
     max-width: 800px;
     max-height: 800px;
     border-radius: 50%;
     background: radial-gradient(circle at 35% 35%, rgba(255, 90, 194, 0.15) 0%, rgba(69, 28, 146, 0.2) 40%, rgba(0, 85, 241, 0.08) 70%, transparent 100%);
     animation: orbFloat 8s ease-in-out infinite alternate;
     pointer-events: none;
 }

 @keyframes orbFloat {
     from {
         transform: translate(0, 0) scale(1);
     }

     to {
         transform: translate(-3%, 5%) scale(1.05);
     }
 }

 /* Grid lines */
 .hero-grid {
     position: absolute;
     inset: 0;
     background-image:
         linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
         linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
     background-size: 60px 60px;
     mask-image: radial-gradient(ellipse 80% 80% at 20% 60%, black 0%, transparent 70%);
 }

 .hero-eyebrow {
     display: inline-flex;
     align-items: center;
     gap: 0.8rem;
     font-family: var(--font-mono);
     font-size: 0.7rem;
     letter-spacing: 0.2em;
     text-transform: uppercase;
     color: var(--pink);
     margin-bottom: 1.5rem;
     opacity: 0;
     animation: slideUp 0.9s 0.2s var(--ease-out-expo) forwards;
 }

 .hero-eyebrow::before {
     content: '';
     display: block;
     width: 32px;
     height: 1px;
     background: var(--pink);
 }

 .hero h1 {
     font-size: clamp(3.2rem, 7vw, 7rem);
     font-weight: 700;
     line-height: 1.0;
     letter-spacing: -0.03em;
     max-width: 820px;
     margin-bottom: 1.8rem;
     opacity: 0;
     animation: slideUp 1s 0.35s var(--ease-out-expo) forwards;
 }

 .hero h1 .grad-text {
     background: var(--grad-brand);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
 }

 .hero-desc {
     font-size: 1.1rem;
     font-weight: 300;
     color: rgba(255, 255, 255, 0.55);
     max-width: 480px;
     line-height: 1.75;
     margin-bottom: 2.5rem;
     opacity: 0;
     animation: slideUp 1s 0.5s var(--ease-out-expo) forwards;
 }

 .hero-actions {
     display: flex;
     align-items: center;
     gap: 1.5rem;
     flex-wrap: wrap;
     opacity: 0;
     animation: slideUp 1s 0.65s var(--ease-out-expo) forwards;
 }

 .btn-primary {
     display: inline-flex;
     align-items: center;
     gap: 0.6rem;
     padding: 1rem 2rem;
     font-size: 0.82rem;
     font-weight: 600;
     letter-spacing: 0.1em;
     text-transform: uppercase;
     text-decoration: none;
     color: var(--white);
     background: var(--grad-brand);
     clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
     transition: opacity 0.25s, transform 0.25s;
     position: relative;
 }

 .btn-primary:hover {
     opacity: 0.88;
     transform: translateY(-2px);
 }

 .btn-ghost {
     display: inline-flex;
     align-items: center;
     gap: 0.5rem;
     font-size: 0.82rem;
     font-weight: 500;
     letter-spacing: 0.08em;
     text-transform: uppercase;
     text-decoration: none;
     color: rgba(255, 255, 255, 0.65);
     border-bottom: 1px solid rgba(255, 255, 255, 0.2);
     padding-bottom: 2px;
     transition: color 0.2s, border-color 0.2s;
 }

 .btn-ghost:hover {
     color: var(--pink);
     border-color: var(--pink);
 }

 .btn-ghost::after {
     content: '→';
     transition: transform 0.2s;
 }

 .btn-ghost:hover::after {
     transform: translateX(4px);
 }

 /* Stats row */
 .hero-stats {
     position: absolute;
     bottom: 8vh;
     right: 8%;
     display: flex;
     flex-direction: column;
     gap: 2rem;
     opacity: 0;
     animation: fadeIn 1s 1s forwards;
 }

 .hero-stat-item {}

 .hero-stat-num {
     font-size: 2.8rem;
     font-weight: 700;
     letter-spacing: -0.04em;
     background: var(--grad-brand);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
     line-height: 1;
 }

 .hero-stat-label {
     font-family: var(--font-mono);
     font-size: 0.65rem;
     letter-spacing: 0.18em;
     text-transform: uppercase;
     color: rgba(255, 255, 255, 0.35);
     margin-top: 0.3rem;
 }

 @keyframes slideUp {
     from {
         opacity: 0;
         transform: translateY(30px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 @keyframes fadeIn {
     from {
         opacity: 0;
     }

     to {
         opacity: 1;
     }
 }

 /* ============================
       MARQUEE
    ============================ */
 .marquee-wrap {
     background: rgba(27, 20, 100, 0.4);
     border-top: 1px solid rgba(255, 90, 194, 0.15);
     border-bottom: 1px solid rgba(255, 90, 194, 0.15);
     overflow: hidden;
     padding: 0.9rem 0;
 }

 .marquee-track {
     display: flex;
     gap: 0;
     width: max-content;
     animation: marquee 28s linear infinite;
 }

 .marquee-track:hover {
     animation-play-state: paused;
 }

 @keyframes marquee {
     from {
         transform: translateX(0);
     }

     to {
         transform: translateX(-50%);
     }
 }

 .marquee-item {
     font-family: var(--font-mono);
     font-size: 0.65rem;
     letter-spacing: 0.25em;
     text-transform: uppercase;
     color: rgba(255, 255, 255, 0.4);
     padding: 0 2.5rem;
     white-space: nowrap;
 }

 .marquee-sep {
     color: var(--pink);
     padding: 0;
 }

 /* ============================
       SECTION BASE
    ============================ */
 section {
     padding: 6rem 8%;
 }

 .section-tag {
     display: inline-flex;
     align-items: center;
     gap: 0.6rem;
     font-family: var(--font-mono);
     font-size: 0.65rem;
     letter-spacing: 0.22em;
     text-transform: uppercase;
     color: var(--pink);
     margin-bottom: 1.2rem;
 }

 .section-tag::before {
     content: '';
     display: block;
     width: 20px;
     height: 1px;
     background: var(--pink);
 }

 .section-heading {
     font-size: clamp(2rem, 4.5vw, 4rem);
     font-weight: 700;
     letter-spacing: -0.03em;
     line-height: 1.05;
     margin-bottom: 1.2rem;
 }

 .section-sub {
     font-size: 1rem;
     font-weight: 300;
     color: rgba(255, 255, 255, 0.45);
     max-width: 500px;
     line-height: 1.8;
 }

 /* ============================
       SERVICES
    ============================ */
 #services {
     background: linear-gradient(180deg, var(--black) 0%, rgba(27, 20, 100, 0.08) 100%);
     position: relative;
 }

 #services::before {
     content: '';
     position: absolute;
     top: 0;
     left: 8%;
     right: 8%;
     height: 1px;
     background: linear-gradient(90deg, transparent, rgba(255, 90, 194, 0.3), transparent);
 }

 .services-header {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 3rem;
     align-items: end;
     margin-bottom: 4rem;
 }

 .services-grid {
     display: grid;
     grid-template-columns: repeat(2, 1fr);
     gap: 1px;
     background: rgba(255, 90, 194, 0.08);
     border: 1px solid rgba(255, 90, 194, 0.12);
 }

 .service-card {
     background: rgba(10, 11, 13, 0.95);
     padding: 2.8rem;
     position: relative;
     overflow: hidden;
     cursor: default;
     transition: background 0.35s;
 }

 .service-card::before {
     content: '';
     position: absolute;
     inset: 0;
     background: var(--grad-brand);
     opacity: 0;
     transition: opacity 0.35s;
 }

 .service-card:hover {
     background: rgba(27, 20, 100, 0.4);
 }

 .service-card:hover::before {
     opacity: 0.04;
 }

 /* Left accent bar */
 .service-card::after {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 3px;
     height: 0;
     background: var(--grad-brand);
     transition: height 0.4s var(--ease-out-expo);
 }

 .service-card:hover::after {
     height: 100%;
 }

 .service-num {
     font-family: var(--font-mono);
     font-size: 0.65rem;
     letter-spacing: 0.2em;
     color: rgba(255, 90, 194, 0.5);
     margin-bottom: 1.5rem;
     display: block;
 }

 .service-icon {
     width: 48px;
     height: 48px;
     margin-bottom: 1.5rem;
     opacity: 0.7;
     transition: opacity 0.3s;
 }

 .service-card:hover .service-icon {
     opacity: 1;
 }

 .service-card h3 {
     font-size: 1.5rem;
     font-weight: 700;
     letter-spacing: -0.02em;
     margin-bottom: 0.8rem;
     position: relative;
 }

 .service-card p {
     font-size: 0.9rem;
     font-weight: 300;
     color: rgba(255, 255, 255, 0.45);
     line-height: 1.8;
     position: relative;
 }



 /* ============================
       TRADE PARTNERS
    ============================ */
 #trade {
     background: var(--black);
     position: relative;
 }

 #trade::before {
     content: '';
     position: absolute;
     top: 0;
     left: 8%;
     right: 8%;
     height: 1px;
     background: linear-gradient(90deg, transparent, rgba(0, 85, 241, 0.3), transparent);
 }

 .trade-intro {
     margin-bottom: 4rem;
 }

 .trade-grid {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 1.5rem;
 }

 .trade-card {
     border: 1px solid rgba(255, 255, 255, 0.06);
     padding: 3rem;
     position: relative;
     overflow: hidden;
     transition: border-color 0.3s, transform 0.3s var(--ease-out-expo);
 }

 .trade-card:hover {
     border-color: rgba(255, 90, 194, 0.3);
     transform: translateY(-4px);
 }

 .trade-card-bg {
     position: absolute;
     inset: 0;
     opacity: 0;
     transition: opacity 0.4s;
 }

 .trade-card:hover .trade-card-bg {
     opacity: 1;
 }

 .trade-card:nth-child(1) .trade-card-bg {
     background: radial-gradient(ellipse at 0% 100%, rgba(255, 90, 194, 0.06) 0%, transparent 60%);
 }

 .trade-card:nth-child(2) .trade-card-bg {
     background: radial-gradient(ellipse at 100% 100%, rgba(0, 85, 241, 0.06) 0%, transparent 60%);
 }

 .trade-tag {
     font-family: var(--font-mono);
     font-size: 0.62rem;
     letter-spacing: 0.2em;
     text-transform: uppercase;
     display: inline-block;
     padding: 0.35rem 0.8rem;
     margin-bottom: 1.5rem;
     position: relative;
 }

 .trade-tag-designer {
     color: var(--pink);
     border: 1px solid rgba(255, 90, 194, 0.3);
 }

 .trade-tag-agent {
     color: #7eb8ff;
     border: 1px solid rgba(0, 85, 241, 0.35);
 }

 .trade-card h3 {
     font-size: 1.6rem;
     font-weight: 700;
     letter-spacing: -0.025em;
     margin-bottom: 1rem;
     line-height: 1.15;
     position: relative;
 }

 .trade-card>p {
     font-size: 0.9rem;
     color: rgba(255, 255, 255, 0.45);
     line-height: 1.8;
     margin-bottom: 2rem;
     font-weight: 300;
     position: relative;
 }

 .trade-benefits {
     list-style: none;
     display: flex;
     flex-direction: column;
     gap: 0.7rem;
     margin-bottom: 2.5rem;
     position: relative;
 }

 .trade-benefits li {
     font-size: 0.87rem;
     color: rgba(255, 255, 255, 0.65);
     display: flex;
     gap: 0.9rem;
     align-items: flex-start;
     line-height: 1.5;
 }

 .trade-benefits li::before {
     content: '✦';
     font-size: 0.5rem;
     margin-top: 0.45rem;
     flex-shrink: 0;
 }

 .trade-card:nth-child(1) .trade-benefits li::before {
     color: var(--pink);
 }

 .trade-card:nth-child(2) .trade-benefits li::before {
     color: #7eb8ff;
 }

 .trade-link {
     display: inline-flex;
     align-items: center;
     gap: 0.6rem;
     font-size: 0.75rem;
     font-weight: 600;
     letter-spacing: 0.12em;
     text-transform: uppercase;
     text-decoration: none;
     position: relative;
     transition: gap 0.2s;
 }

 .trade-card:nth-child(1) .trade-link {
     color: var(--pink);
 }

 .trade-card:nth-child(2) .trade-link {
     color: #7eb8ff;
 }

 .trade-link:hover {
     gap: 1rem;
 }

 .trade-link::after {
     content: '→';
 }

 /* ============================
       ABOUT
    ============================ */
 #about {
     background: rgba(27, 20, 100, 0.06);
     position: relative;
 }

 #about::before {
     content: '';
     position: absolute;
     top: 0;
     left: 8%;
     right: 8%;
     height: 1px;
     background: linear-gradient(90deg, transparent, rgba(198, 105, 194, 0.3), transparent);
 }

 .about-layout {
     display: grid;
     grid-template-columns: 1fr 1.2fr;
     gap: 5rem;
     align-items: center;
 }

 .about-visual-wrap {
     position: relative;
 }

 .about-visual {
     /* aspect-ratio: 4/5; */
     /* background: linear-gradient(135deg, rgba(69, 28, 146, 0.3), rgba(27, 20, 100, 0.5)); */
     border: 1px solid rgba(255, 90, 194, 0.12);
     position: relative;
     overflow: hidden;
 }

 /* Animated waveform inside visual */
 .about-visual-inner {
     position: absolute;
     inset: 0;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .waveform-display {
     display: flex;
     align-items: center;
     gap: 6px;
     height: 120px;
 }

 .waveform-display .bar {
     width: 4px;
     border-radius: 2px;
     background: var(--grad-brand);
     animation: waveBar 1.4s ease-in-out infinite alternate;
 }

 .waveform-display .bar:nth-child(1) {
     height: 30%;
     animation-delay: 0.0s;
 }

 .waveform-display .bar:nth-child(2) {
     height: 55%;
     animation-delay: 0.1s;
 }

 .waveform-display .bar:nth-child(3) {
     height: 80%;
     animation-delay: 0.2s;
 }

 .waveform-display .bar:nth-child(4) {
     height: 60%;
     animation-delay: 0.3s;
 }

 .waveform-display .bar:nth-child(5) {
     height: 100%;
     animation-delay: 0.15s;
 }

 .waveform-display .bar:nth-child(6) {
     height: 70%;
     animation-delay: 0.25s;
 }

 .waveform-display .bar:nth-child(7) {
     height: 45%;
     animation-delay: 0.4s;
 }

 .waveform-display .bar:nth-child(8) {
     height: 85%;
     animation-delay: 0.05s;
 }

 .waveform-display .bar:nth-child(9) {
     height: 55%;
     animation-delay: 0.35s;
 }

 .waveform-display .bar:nth-child(10) {
     height: 35%;
     animation-delay: 0.2s;
 }

 .waveform-display .bar:nth-child(11) {
     height: 65%;
     animation-delay: 0.1s;
 }

 .waveform-display .bar:nth-child(12) {
     height: 90%;
     animation-delay: 0.3s;
 }

 @keyframes waveBar {
     from {
         transform: scaleY(0.2);
         opacity: 0.4;
     }

     to {
         transform: scaleY(1);
         opacity: 1;
     }
 }

 .about-badge {
     position: absolute;
     bottom: -1rem;
     right: -1rem;
     background: var(--grad-brand);
     padding: 1.5rem;
     clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 0 100%);
 }

 .about-badge-num {
     font-size: 2.5rem;
     font-weight: 700;
     letter-spacing: -0.04em;
     color: var(--white);
     line-height: 1;
 }

 .about-badge-label {
     font-family: var(--font-mono);
     font-size: 0.6rem;
     letter-spacing: 0.15em;
     text-transform: uppercase;
     color: rgba(255, 255, 255, 0.7);
     margin-top: 0.25rem;
 }

 .about-text {
     display: flex;
     flex-direction: column;
     gap: 1.5rem;
 }

 .about-text p {
     font-size: 0.95rem;
     font-weight: 300;
     color: rgba(255, 255, 255, 0.5);
     line-height: 1.85;
 }

 .about-text p strong {
     color: rgba(255, 255, 255, 0.85);
     font-weight: 500;
 }

 .area-tags {
     display: flex;
     flex-wrap: wrap;
     gap: 0.6rem;
     margin-top: 0.5rem;
 }

 .area-tag {
     font-family: var(--font-mono);
     font-size: 0.65rem;
     letter-spacing: 0.15em;
     text-transform: uppercase;
     padding: 0.45rem 1rem;
     border: 1px solid rgba(255, 90, 194, 0.25);
     color: rgba(255, 255, 255, 0.5);
     transition: border-color 0.2s, color 0.2s;
 }

 .area-tag:hover {
     border-color: var(--pink);
     color: var(--pink);
 }

 /* ============================
       CONTACT / FORM
    ============================ */
 #contact {
     background: var(--black);
     position: relative;
 }

 #contact::before {
     content: '';
     position: absolute;
     top: 0;
     left: 8%;
     right: 8%;
     height: 1px;
     background: linear-gradient(90deg, transparent, rgba(255, 90, 194, 0.3), transparent);
 }

 /* Ambient glow */
 #contact::after {
     content: '';
     position: absolute;
     bottom: 0;
     left: 0;
     right: 0;
     height: 60%;
     background: radial-gradient(ellipse at 50% 100%, rgba(69, 28, 146, 0.15) 0%, transparent 60%);
     pointer-events: none;
 }

 .contact-layout {
     display: grid;
     grid-template-columns: 1.2fr 1fr;
     gap: 5rem;
     align-items: start;
     position: relative;
     z-index: 1;
 }

 .contact-form {
     display: flex;
     flex-direction: column;
     gap: 1.2rem;
 }

 .form-row {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 1.2rem;
 }

 .form-group {
     display: flex;
     flex-direction: column;
     gap: 0.5rem;
 }

 .form-group label {
     font-family: var(--font-mono);
     font-size: 0.62rem;
     letter-spacing: 0.18em;
     text-transform: uppercase;
     color: rgba(255, 255, 255, 0.4);
 }

 .form-group input,
 .form-group select,
 .form-group textarea {
     background: rgba(255, 255, 255, 0.03);
     border: 1px solid rgba(255, 255, 255, 0.1);
     color: var(--white);
     padding: 0.9rem 1.1rem;
     font-family: var(--font-body);
     font-size: 0.9rem;
     font-weight: 300;
     outline: none;
     transition: border-color 0.25s, background 0.25s;
     appearance: none;
     border-radius: 0;
 }

 .form-group input::placeholder,
 .form-group textarea::placeholder {
     color: rgba(255, 255, 255, 0.2);
 }

 .form-group input:focus,
 .form-group select:focus,
 .form-group textarea:focus {
     border-color: rgba(255, 90, 194, 0.5);
     background: rgba(255, 90, 194, 0.03);
 }

 .form-group select {
     cursor: pointer;
     background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='rgba(255,255,255,0.3)'/%3E%3C/svg%3E");
     background-repeat: no-repeat;
     background-position: right 1rem center;
     background-color: rgba(255, 255, 255, 0.03);
 }

 .form-group select option {
     background: #1B1464;
 }

 .form-group textarea {
     resize: vertical;
     min-height: 130px;
 }

 .form-submit {
     align-self: flex-start;
     display: inline-flex;
     align-items: center;
     gap: 0.7rem;
     padding: 1rem 2.2rem;
     font-family: var(--font-body);
     font-size: 0.8rem;
     font-weight: 600;
     letter-spacing: 0.12em;
     text-transform: uppercase;
     color: var(--white);
     background: var(--grad-brand);
     border: none;
     clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 0 100%);
     cursor: pointer;
     transition: opacity 0.25s, transform 0.25s;
 }

 .form-submit:hover:not(:disabled) {
     opacity: 0.88;
     transform: translateY(-2px);
 }

 .form-submit:disabled {
     opacity: 0.5;
     cursor: not-allowed;
 }

 #form-success {
     display: none;
     color: var(--teal);
     font-family: var(--font-mono);
     font-size: 0.8rem;
     letter-spacing: 0.08em;
     padding: 1rem;
     border: 1px solid rgba(15, 216, 187, 0.3);
     background: rgba(15, 216, 187, 0.05);
 }

 #form-error {
     display: none;
     color: #ff6b6b;
     font-family: var(--font-mono);
     font-size: 0.8rem;
     letter-spacing: 0.05em;
     padding: 1rem;
     border: 1px solid rgba(255, 107, 107, 0.3);
     background: rgba(255, 107, 107, 0.05);
 }

 /* Contact info panel */
 .contact-info h3 {
     font-size: 1.8rem;
     font-weight: 700;
     letter-spacing: -0.025em;
     margin-bottom: 1rem;
     line-height: 1.2;
 }

 .contact-info>p {
     font-size: 0.92rem;
     color: rgba(255, 255, 255, 0.4);
     line-height: 1.8;
     font-weight: 300;
     margin-bottom: 2.5rem;
 }

 .contact-details {
     display: flex;
     flex-direction: column;
     gap: 1.5rem;
 }

 .contact-detail {
     display: flex;
     flex-direction: column;
     gap: 0.3rem;
 }

 .cd-label {
     font-family: var(--font-mono);
     font-size: 0.6rem;
     letter-spacing: 0.22em;
     text-transform: uppercase;
     color: var(--pink);
 }

 .cd-val {
     font-size: 0.92rem;
     color: rgba(255, 255, 255, 0.7);
     font-weight: 300;
 }

 .cd-val a {
     color: rgba(255, 255, 255, 0.7);
     text-decoration: none;
     transition: color 0.2s;
 }

 .cd-val a:hover {
     color: var(--pink);
 }

 /* Promise cards */
 .promise-row {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 1px;
     background: rgba(255, 90, 194, 0.06);
     margin-top: 3rem;
     position: relative;
     z-index: 1;
 }

 .promise-card {
     background: var(--black);
     padding: 2rem 1.5rem;
     text-align: center;
     transition: background 0.3s;
 }

 .promise-card:hover {
     background: rgba(69, 28, 146, 0.15);
 }

 .promise-num {
     font-size: 2.2rem;
     font-weight: 700;
     letter-spacing: -0.04em;
     background: var(--grad-brand);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
     margin-bottom: 0.3rem;
 }

 .promise-label {
     font-family: var(--font-mono);
     font-size: 0.62rem;
     letter-spacing: 0.15em;
     text-transform: uppercase;
     color: rgba(255, 255, 255, 0.35);
 }

 /* ============================
       FOOTER
    ============================ */
 footer {
     background: rgba(27, 20, 100, 0.12);
     border-top: 1px solid rgba(255, 90, 194, 0.1);
     padding: 3rem 8%;
     display: flex;
     justify-content: space-between;
     align-items: center;
     flex-wrap: wrap;
     gap: 1.5rem;
 }

 .footer-logo {
     display: flex;
     align-items: center;
     gap: 0.7rem;
     text-decoration: none;
 }

 .footer-logo-text {
     font-size: 1.1rem;
     font-weight: 700;
     letter-spacing: -0.02em;
     color: var(--white);
 }

 .footer-logo-text span {
     background: var(--grad-brand);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
 }

 .footer-copy {
     font-family: var(--font-mono);
     font-size: 0.65rem;
     letter-spacing: 0.12em;
     text-transform: uppercase;
     color: rgba(255, 255, 255, 0.25);
 }

 .footer-links {
     display: flex;
     gap: 2rem;
     list-style: none;
 }

 .footer-links a {
     font-family: var(--font-mono);
     font-size: 0.65rem;
     letter-spacing: 0.12em;
     text-transform: uppercase;
     color: rgba(255, 255, 255, 0.3);
     text-decoration: none;
     transition: color 0.2s;
 }

 .footer-links a:hover {
     color: var(--pink);
 }

 /* ============================
       AKITA DOG SVG LOGO
    ============================ */
 .logo-svg-wrap {
     display: flex;
     align-items: center;
 }

 /* ============================
       RESPONSIVE
    ============================ */
 @media (max-width: 960px) {

     .services-header,
     .trade-grid,
     .about-layout,
     .contact-layout {
         grid-template-columns: 1fr;
         gap: 2.5rem;
     }

     .services-grid {
         grid-template-columns: 1fr;
     }

     .hero-stats {
         position: static;
         padding-top: 3rem;
         display: flex;
         justify-content: space-between;
         align-items: center;
         flex-direction: row;
         gap: 20px;
         flex-wrap: wrap;
     }

     .form-row {
         grid-template-columns: 1fr;
     }

     .promise-row {
         grid-template-columns: 1fr;
     }

     footer {
         flex-direction: column;
         text-align: center;
     }

     .footer-links {
         flex-wrap: wrap;
         justify-content: center;
     }

     .nav-links {
         display: none;
     }

     .nav-toggle {
         display: flex;
     }

     .nav-links.open {
         display: flex;
         flex-direction: column;
         position: fixed;
         top: 70px;
         left: 0;
         right: 0;
         background: rgba(10, 11, 13, 0.97);
         backdrop-filter: blur(20px);
         padding: 2rem;
         gap: 1.5rem;
         border-bottom: 1px solid rgba(255, 90, 194, 0.15);
         z-index: 99;
     }
 }

 @media (max-width: 640px) {
     section {
         padding: 4.5rem 6%;
     }

     .hero {
         padding: 8rem 6% 10vh;
     }

     nav {
         padding: 1rem 6%;
     }
 }

 @media screen and (max-width: 450px) {
     .hero h1 {
         font-size: 40px;
     }
 }

 @media screen and (max-width: 380px) {
     .service-card {
         padding: 20px;
     }

     .trade-card {
         padding: 20px;
     }
 }

 @media screen and (max-width: 340px) {
     .hero h1 {
         font-size: 37px;
     }
 }

 /* ============================
       SCROLL REVEAL
    ============================ */
 .reveal {
     opacity: 0;
     transform: translateY(28px);
     transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
 }

 .reveal.visible {
     opacity: 1;
     transform: translateY(0);
 }

 .reveal-delay-1 {
     transition-delay: 0.1s;
 }

 .reveal-delay-2 {
     transition-delay: 0.2s;
 }

 .reveal-delay-3 {
     transition-delay: 0.3s;
 }

 .reveal-delay-4 {
     transition-delay: 0.4s;
 }