@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Open+Sans:ital,wght@0,300;0,400;0,600;1,400&display=swap');

:root {
  --red: #9B1C1C; --red-bright: #C0392B; --red-dark: #6B0F0F;
  --red-dim: rgba(155,28,28,0.12); --black: #0d0d0d; --dark: #111111;
  --dark-2: #1a1a1a; --dark-card: #181818; --border: rgba(255,255,255,0.08);
  --border-red: rgba(155,28,28,0.3); --white: #ffffff; --off-white: #f7f7f7;
  --grey: #999999; --font-head: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif; --radius: 4px; --radius-md: 8px;
  --radius-lg: 12px; --trans: 0.25s ease;
  --shadow: 0 4px 24px rgba(0,0,0,0.4); --shadow-red: 0 8px 32px rgba(155,28,28,0.35);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--white); color: var(--dark); line-height: 1.6; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
input, textarea, select, button { font-family: inherit; }

/* NAV */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: var(--white); border-bottom: 1px solid rgba(0,0,0,0.08); box-shadow: 0 2px 20px rgba(0,0,0,0.06); transition: var(--trans); }
.nav-inner { max-width: 1280px; margin: 0 auto; padding: 0 2rem; display: flex; align-items: center; justify-content: space-between; height: 80px; }
.nav-logo img { height: 60px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a { font-family: var(--font-head); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; color: var(--dark); transition: color var(--trans); position: relative; padding-bottom: 2px; }
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--red-bright); transition: width var(--trans); }
.nav-links a:hover { color: var(--red-bright); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--red-bright); }
.nav-cta { background: var(--red-bright) !important; color: var(--white) !important; padding: 0.55rem 1.4rem !important; border-radius: var(--radius) !important; transition: background var(--trans), transform var(--trans) !important; }
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--red-dark) !important; transform: translateY(-1px); color: var(--white) !important; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.nav-toggle span { display: block; width: 26px; height: 2px; background: var(--dark); transition: var(--trans); border-radius: 2px; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu { display: none; position: fixed; top: 80px; left: 0; right: 0; background: var(--white); border-bottom: 2px solid var(--red-bright); padding: 1.5rem 2rem; flex-direction: column; gap: 1rem; z-index: 999; box-shadow: var(--shadow); }
.mobile-menu.open { display: flex; }
.mobile-menu a { font-family: var(--font-head); font-size: 0.9rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; color: var(--dark); padding: 0.6rem 0; border-bottom: 1px solid rgba(0,0,0,0.06); }
.mobile-menu a:last-child { border: none; }
.mobile-menu a:hover { color: var(--red-bright); }

/* PAGE HERO BANNER */
.page-hero { background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 60%, #1a0a0a 100%); padding: 7rem 2rem 4rem; text-align: center; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(155,28,28,0.18) 0%, transparent 60%); }
.page-hero h1 { font-family: var(--font-head); font-size: clamp(2rem, 5vw, 3rem); font-weight: 800; color: var(--white); position: relative; z-index: 1; }
.page-hero-crumb { font-size: 0.78rem; color: rgba(255,255,255,0.45); position: relative; z-index: 1; margin-top: 0.5rem; letter-spacing: 0.1em; text-transform: uppercase; }
.page-hero-crumb a { color: var(--red-bright); }

/* SECTION LABEL */
.section-label { display: flex; align-items: center; justify-content: center; gap: 0.75rem; margin-bottom: 0.75rem; }
.section-label::before, .section-label::after { content: ''; display: block; width: 28px; height: 2px; background: var(--red-bright); }
.section-label span { font-family: var(--font-head); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--red-bright); }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.8rem 2rem; border-radius: var(--radius); font-family: var(--font-head); font-size: 0.8rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; cursor: pointer; border: none; transition: all var(--trans); white-space: nowrap; text-decoration: none; }
.btn-red { background: var(--red-bright); color: var(--white); box-shadow: 0 4px 16px rgba(192,57,43,0.3); }
.btn-red:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: var(--shadow-red); color: var(--white); }
.btn-dark { background: var(--dark); color: var(--white); }
.btn-dark:hover { background: var(--dark-2); transform: translateY(-2px); color: var(--white); }
.btn-outline-white { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.4); }
.btn-outline-white:hover { border-color: var(--white); background: rgba(255,255,255,0.1); color: var(--white); }
.btn-outline-dark { background: transparent; color: var(--dark); border: 2px solid rgba(0,0,0,0.25); }
.btn-outline-dark:hover { background: var(--dark); color: var(--white); }
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

/* HERO */
.hero { min-height: 100vh; background: var(--dark); display: flex; align-items: center; position: relative; overflow: hidden; padding-top: 80px; }
.hero-bg-img { position: absolute; inset: 0; background: url('https://images.unsplash.com/photo-1603584173870-7f23fdae1b7a?w=1600&q=80') center/cover no-repeat; opacity: 0.22; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(100deg, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.65) 55%, rgba(0,0,0,0.3) 100%); }
.hero-content { position: relative; z-index: 2; max-width: 1280px; margin: 0 auto; padding: 5rem 2rem; width: 100%; }
.hero-tag { display: inline-flex; align-items: center; gap: 0.5rem; background: var(--red-dim); border: 1px solid var(--border-red); color: #ff8080; padding: 0.4rem 1rem; border-radius: 50px; font-family: var(--font-head); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 1.5rem; opacity: 0; animation: slideUp 0.7s 0.1s forwards; }
.hero-tag-dot { width: 6px; height: 6px; background: var(--red-bright); border-radius: 50%; animation: pulse 2s infinite; }
.hero-title { font-family: var(--font-head); font-size: clamp(2.4rem, 6vw, 5.2rem); font-weight: 900; color: var(--white); line-height: 1.05; margin-bottom: 1.25rem; letter-spacing: -0.01em; opacity: 0; animation: slideUp 0.7s 0.25s forwards; }
.hero-title .red { color: var(--red-bright); }
.hero-subtitle { font-size: clamp(0.9rem, 1.8vw, 1.05rem); font-weight: 300; color: rgba(255,255,255,0.6); max-width: 520px; line-height: 1.85; margin-bottom: 2.5rem; opacity: 0; animation: slideUp 0.7s 0.4s forwards; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3.5rem; opacity: 0; animation: slideUp 0.7s 0.55s forwards; }
.hero-stats { display: flex; gap: 3rem; padding-top: 2.5rem; border-top: 1px solid rgba(255,255,255,0.1); opacity: 0; animation: slideUp 0.7s 0.7s forwards; flex-wrap: wrap; }
.hero-stat-value { font-family: var(--font-head); font-size: 2.2rem; font-weight: 900; color: var(--red-bright); line-height: 1; }
.hero-stat-label { font-size: 0.76rem; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 0.3rem; }

/* TRUST BAR */
.trust-bar { background: var(--dark-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 1rem 2rem; }
.trust-bar-inner { max-width: 1280px; margin: 0 auto; display: flex; align-items: center; justify-content: center; gap: 2rem; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 0.5rem; font-family: var(--font-head); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.6); white-space: nowrap; }
.trust-check { color: #4ADE80; font-size: 0.9rem; }
.trust-divider { width: 1px; height: 18px; background: var(--border); flex-shrink: 0; }

/* INTRO */
.intro-section { padding: 5rem 2rem; max-width: 1280px; margin: 0 auto; text-align: center; }
.intro-section h2 { font-family: var(--font-head); font-size: clamp(1.4rem, 3vw, 2.2rem); font-weight: 800; color: var(--dark); margin-bottom: 1.5rem; }
.intro-section p { color: #555; font-size: 0.95rem; max-width: 760px; margin: 0 auto 1rem; line-height: 1.85; }
.intro-badges { display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; margin-top: 2rem; }
.intro-badge { background: var(--off-white); border: 1px solid rgba(0,0,0,0.08); padding: 0.5rem 1.1rem; border-radius: 50px; font-family: var(--font-head); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--dark); }

/* SERVICES */
.services-section { background: var(--off-white); padding: 5rem 2rem; }
.services-inner { max-width: 1280px; margin: 0 auto; }
.services-inner h2 { font-family: var(--font-head); font-size: clamp(1.5rem, 3vw, 2.5rem); font-weight: 800; text-align: center; color: var(--dark); margin-bottom: 0.75rem; }
.services-subtitle { text-align: center; color: #666; margin-bottom: 3rem; font-size: 0.95rem; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.service-card { background: var(--white); border-radius: var(--radius-md); padding: 2.5rem 2rem; border: 1px solid rgba(0,0,0,0.07); box-shadow: 0 2px 16px rgba(0,0,0,0.05); transition: all var(--trans); position: relative; overflow: hidden; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--red-bright); transform: scaleX(0); transform-origin: left; transition: transform var(--trans); }
.service-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.12); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon-wrap { width: 56px; height: 56px; background: var(--red-dim); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; font-size: 1.5rem; }
.service-card h3 { font-family: var(--font-head); font-size: 1.1rem; font-weight: 800; color: var(--dark); margin-bottom: 0.75rem; }
.service-card p { font-size: 0.875rem; color: #666; line-height: 1.75; margin-bottom: 1.5rem; }
.service-card .btn { align-self: flex-start; font-size: 0.75rem; padding: 0.6rem 1.2rem; }

/* HOW IT WORKS */
.how-section { padding: 5rem 2rem; background: var(--dark); }
.how-section h2 { color: var(--white); font-family: var(--font-head); font-size: clamp(1.5rem,3vw,2.5rem); font-weight: 800; text-align: center; margin-bottom: 0.75rem; }
.how-subtitle { text-align: center; color: rgba(255,255,255,0.45); font-size: 0.9rem; margin-bottom: 3rem; }
.how-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; align-items: start; }
.how-card { background: var(--dark-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2rem 1.75rem; text-align: center; transition: border-color var(--trans), transform var(--trans); }
.how-card:hover { border-color: var(--border-red); transform: translateY(-4px); }
.how-number { width: 48px; height: 48px; border-radius: 50%; background: var(--red-bright); color: var(--white); font-family: var(--font-head); font-size: 1.3rem; font-weight: 900; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.25rem; box-shadow: var(--shadow-red); }
.how-card h3 { font-family: var(--font-head); font-size: 0.88rem; font-weight: 800; color: var(--white); margin-bottom: 0.75rem; text-transform: uppercase; letter-spacing: 0.05em; }
.how-card p { font-size: 0.88rem; color: rgba(255,255,255,0.45); line-height: 1.8; }
.how-arrow { display: flex; align-items: center; justify-content: center; padding: 0 1.25rem; padding-top: 3rem; color: var(--red-bright); font-size: 1.5rem; font-weight: 900; opacity: 0.5; }
.how-cta-wrap { text-align: center; margin-top: 3rem; }
.how-cta-wrap p { color: rgba(255,255,255,0.3); font-size: 0.8rem; margin-top: 0.75rem; letter-spacing: 0.03em; }

/* PLATFORMS */
.platforms-section { background: var(--dark-2); padding: 5rem 2rem; }
.platforms-section h2 { color: var(--white); font-family: var(--font-head); font-size: clamp(1.5rem,3vw,2.5rem); font-weight: 800; text-align: center; margin-bottom: 0.75rem; }
.platforms-subtitle { text-align: center; color: rgba(255,255,255,0.4); font-size: 0.92rem; max-width: 640px; margin: 0 auto 3rem; line-height: 1.75; }
.platforms-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
.platform-card { display: flex; flex-direction: column; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); background: var(--dark-card); transition: transform var(--trans), border-color var(--trans), box-shadow var(--trans); text-decoration: none; }
.platform-card:hover { transform: translateY(-5px); border-color: var(--border-red); box-shadow: 0 12px 40px rgba(0,0,0,0.5); }
.platform-card-accent { height: 3px; width: 100%; }
.platform-card-body { padding: 1.75rem; flex: 1; display: flex; flex-direction: column; gap: 0.75rem; }
.platform-tag { display: inline-block; font-family: var(--font-head); font-size: 0.65rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; padding: 0.25rem 0.75rem; border-radius: 50px; align-self: flex-start; }
.platform-card h3 { font-family: var(--font-head); font-size: 1.1rem; font-weight: 800; color: var(--white); text-align: left; margin: 0; }
.platform-card p { font-size: 0.88rem; color: rgba(255,255,255,0.45); line-height: 1.75; flex: 1; }
.platform-link { font-family: var(--font-head); font-size: 0.75rem; font-weight: 700; color: rgba(255,255,255,0.3); letter-spacing: 0.08em; text-transform: uppercase; transition: color var(--trans); margin-top: 0.25rem; }
.platform-card:hover .platform-link { color: var(--red-bright); }

/* CTA BANNER */
.cta-banner { background: linear-gradient(135deg, var(--dark) 0%, #1a0808 100%); padding: 5rem 2rem; text-align: center; position: relative; overflow: hidden; }
.cta-banner::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 80% 80% at 50% 50%, rgba(155,28,28,0.2) 0%, transparent 70%); }
.cta-banner-inner { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.cta-banner h2 { font-family: var(--font-head); font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 900; color: var(--white); margin-bottom: 1rem; line-height: 1.1; }
.cta-banner p { color: rgba(255,255,255,0.55); font-size: 1rem; margin-bottom: 2rem; line-height: 1.7; }
.cta-banner-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 1.75rem; }
.cta-banner-note { margin-top: 1rem; font-size: 0.78rem; color: rgba(255,255,255,0.45); letter-spacing: 0.03em; }

/* WHY CHOOSE US */
.why-section { padding: 5rem 2rem; max-width: 1280px; margin: 0 auto; }
.why-section h2 { font-family: var(--font-head); font-size: clamp(1.5rem, 3vw, 2.5rem); font-weight: 800; text-align: center; color: var(--dark); margin-bottom: 3rem; }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.why-card { text-align: center; padding: 2.5rem 1.5rem; border-radius: var(--radius-md); border: 1px solid rgba(0,0,0,0.08); transition: all var(--trans); }
.why-card:hover { border-color: var(--red-bright); box-shadow: 0 8px 32px rgba(155,28,28,0.1); transform: translateY(-3px); }
.why-icon { width: 64px; height: 64px; background: var(--red-bright); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; font-size: 1.4rem; color: var(--white); }
.why-card h3 { font-family: var(--font-head); font-size: 1rem; font-weight: 800; color: var(--dark); margin-bottom: 0.75rem; }
.why-card p { font-size: 0.875rem; color: #666; line-height: 1.7; }

/* ABOUT */
.about-content { max-width: 1280px; margin: 0 auto; padding: 5rem 2rem; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-tag { font-family: var(--font-head); font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--red-bright); display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1rem; }
.about-tag::before { content: ''; display: block; width: 20px; height: 2px; background: var(--red-bright); }
.about-text h2 { font-family: var(--font-head); font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 900; color: var(--dark); margin-bottom: 1.5rem; line-height: 1.1; }
.about-text p { color: #555; font-size: 0.94rem; line-height: 1.85; margin-bottom: 1.1rem; }
.about-image-wrap { position: relative; }
.about-image-wrap img { width: 100%; height: 480px; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.about-badge { position: absolute; bottom: -1.5rem; left: -1.5rem; background: var(--red-bright); color: var(--white); padding: 1.5rem; border-radius: var(--radius-md); text-align: center; box-shadow: var(--shadow-red); }
.about-badge .bnum { font-family: var(--font-head); font-size: 2.5rem; font-weight: 900; line-height: 1; }
.about-badge .btext { font-size: 0.68rem; opacity: 0.85; text-transform: uppercase; letter-spacing: 0.08em; }
.mission-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; max-width: 900px; margin: 3rem auto 0; padding: 0 2rem; }
.mission-card { background: var(--dark-card); border-radius: var(--radius-md); padding: 2.5rem 2rem; text-align: center; }
.mission-card h3 { font-family: var(--font-head); font-size: 1rem; font-weight: 800; color: var(--red-bright); margin-bottom: 1rem; text-transform: uppercase; letter-spacing: 0.08em; }
.mission-card p { font-size: 0.875rem; color: rgba(255,255,255,0.6); line-height: 1.75; }

/* TESTIMONIALS */
.testimonials-section { background: var(--off-white); padding: 5rem 2rem; }
.testimonials-inner { max-width: 1280px; margin: 0 auto; }
.testimonials-inner h2 { font-family: var(--font-head); font-size: clamp(1.5rem, 3vw, 2.5rem); font-weight: 800; text-align: center; color: var(--dark); margin-bottom: 0.5rem; }
.testimonials-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin-top: 3rem; }
.t-card { background: var(--dark-card); border-radius: var(--radius-md); padding: 2rem; border: 1px solid rgba(255,255,255,0.04); transition: all var(--trans); position: relative; }
.t-card:hover { border-color: rgba(155,28,28,0.3); transform: translateY(-2px); }
.t-quote { font-size: 2.8rem; color: var(--red-bright); line-height: 1; font-family: Georgia, serif; opacity: 0.35; position: absolute; top: 1rem; right: 1.5rem; }
.t-name { font-family: var(--font-head); font-size: 0.9rem; font-weight: 700; color: var(--white); margin-bottom: 0.75rem; }
.t-text { font-size: 0.855rem; color: rgba(255,255,255,0.58); line-height: 1.75; margin-bottom: 1rem; }
.stars { color: #f5a623; font-size: 0.85rem; letter-spacing: 2px; }

/* FORMS */
.form-section { padding: 5rem 2rem; max-width: 860px; margin: 0 auto; }
.form-section h2 { font-family: var(--font-head); font-size: clamp(1.4rem, 3vw, 2.2rem); font-weight: 800; text-align: center; color: var(--dark); margin-bottom: 0.5rem; }
.form-box { background: var(--white); border: 1px solid rgba(0,0,0,0.09); border-radius: var(--radius-lg); padding: 2.5rem; box-shadow: 0 4px 30px rgba(0,0,0,0.07); margin-top: 2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-bottom: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.25rem; }
.form-group label { font-family: var(--font-head); font-size: 0.76rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--dark); }
.form-group label .req { color: var(--red-bright); }
.form-control { padding: 0.75rem 1rem; border: 1.5px solid rgba(0,0,0,0.14); border-radius: var(--radius); font-size: 0.9rem; color: var(--dark); background: var(--white); transition: border-color var(--trans), box-shadow var(--trans); width: 100%; }
.form-control:focus { outline: none; border-color: var(--red-bright); box-shadow: 0 0 0 3px rgba(192,57,43,0.1); }
.form-control::placeholder { color: #bbb; }
textarea.form-control { resize: vertical; min-height: 130px; }
select.form-control { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; }
.form-progress { margin-bottom: 2rem; }
.form-progress-bar { width: 100%; height: 6px; background: #eee; border-radius: 3px; overflow: hidden; }
.form-progress-fill { height: 100%; background: var(--red-bright); border-radius: 3px; transition: width 0.4s ease; }
.form-progress-label { font-size: 0.76rem; color: #888; margin-bottom: 0.5rem; font-family: var(--font-head); font-weight: 600; }
.form-step { display: none; }
.form-step.active { display: block; }
.form-nav { display: flex; justify-content: flex-end; gap: 1rem; margin-top: 1.5rem; }
.form-message { padding: 1rem 1.25rem; border-radius: var(--radius); font-size: 0.88rem; font-weight: 600; margin-top: 1rem; display: none; }
.form-message.success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; display: block; }
.form-message.error { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; display: block; }
.turnstile-wrap { margin: 1.25rem 0; }

/* CONTACT INFO */
.contact-info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; max-width: 900px; margin: 3rem auto; padding: 0 2rem; }
.ci-card { text-align: center; padding: 2rem 1.5rem; border: 1px solid rgba(0,0,0,0.08); border-radius: var(--radius-md); transition: all var(--trans); }
.ci-card:hover { border-color: var(--red-bright); box-shadow: 0 4px 20px rgba(155,28,28,0.1); }
.ci-icon { font-size: 2rem; margin-bottom: 1rem; }
.ci-card h3 { font-family: var(--font-head); font-size: 0.82rem; font-weight: 800; color: var(--red-bright); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.5rem; }
.ci-card p, .ci-card a { font-size: 0.9rem; color: #555; }
.ci-card a:hover { color: var(--red-bright); }

/* MAP */
.map-section { width: 100%; height: 380px; }
.map-section iframe { width: 100%; height: 100%; border: none; display: block; }

/* FOOTER */
.footer { background: var(--dark); color: rgba(255,255,255,0.65); padding: 4rem 2rem 2rem; }
.footer-inner { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.07); }
.footer-logo img { height: 58px; margin-bottom: 1rem; }
.footer-desc { font-size: 0.855rem; line-height: 1.75; color: rgba(255,255,255,0.45); margin-bottom: 1.5rem; }
.footer-social { display: flex; gap: 0.75rem; }
.footer-social a { width: 36px; height: 36px; background: rgba(255,255,255,0.06); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.45); font-size: 0.85rem; transition: all var(--trans); text-decoration: none; }
.footer-social a:hover { background: var(--red-bright); color: var(--white); }
.footer-col h4 { font-family: var(--font-head); font-size: 0.82rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: var(--red-bright); margin-bottom: 1.25rem; }
.footer-links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a { font-size: 0.855rem; color: rgba(255,255,255,0.45); display: flex; align-items: center; gap: 0.4rem; transition: color var(--trans); }
.footer-links a::before { content: '›'; color: var(--red-bright); }
.footer-links a:hover { color: var(--white); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 0.85rem; font-size: 0.855rem; color: rgba(255,255,255,0.45); }
.footer-contact-item .icon { color: var(--red-bright); flex-shrink: 0; }
.footer-contact-item a:hover { color: var(--white); }
.footer-bottom { max-width: 1280px; margin: 0 auto; padding-top: 1.75rem; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.28); }
.footer-bottom a { color: var(--red-bright); }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { font-size: 0.76rem; color: rgba(255,255,255,0.28); transition: color var(--trans); }
.footer-bottom-links a:hover { color: var(--white); }

/* STICKY MOBILE CTA */
.sticky-mobile-cta { display: none; position: fixed; bottom: 0; left: 0; right: 0; background: var(--red-bright); color: var(--white); text-align: center; padding: 1rem 2rem; font-family: var(--font-head); font-size: 0.82rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; z-index: 950; box-shadow: 0 -4px 20px rgba(0,0,0,0.3); transition: background var(--trans); text-decoration: none; }
.sticky-mobile-cta:hover { background: var(--red-dark); }

/* BACK TO TOP */
.back-top { position: fixed; bottom: 2rem; right: 2rem; width: 44px; height: 44px; background: var(--red-bright); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; box-shadow: var(--shadow-red); cursor: pointer; opacity: 0; transform: translateY(12px); transition: all var(--trans); z-index: 500; text-decoration: none; }
.back-top.visible { opacity: 1; transform: translateY(0); }
.back-top:hover { background: var(--red-dark); transform: translateY(-2px); }

/* ANIMATIONS */
@keyframes slideUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes pulse { 0%,100% { opacity:1; transform:scale(1); } 50% { opacity:0.5; transform:scale(1.3); } }
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .platforms-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .t-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .about-content { grid-template-columns: 1fr; gap: 3rem; }
  .about-image-wrap img { height: 320px; }
  .about-badge { display: none; }
  .how-grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .how-arrow { display: none; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .services-grid, .why-grid, .t-grid { grid-template-columns: 1fr; }
  .platforms-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .contact-info-grid { grid-template-columns: 1fr; }
  .mission-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 1.5rem; }
  .trust-bar-inner { gap: 1rem; }
  .trust-divider { display: none; }
  .sticky-mobile-cta { display: block; }
  .back-top { bottom: 5rem; }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .cta-banner-actions { flex-direction: column; align-items: center; }
}

