/* ==========================================================================
   ISR Landing Page Styles
   ========================================================================== */

/* CSS Variables - ISR Brand Colors */
:root {
    --bg-primary: #0B0F14;
    --accent-cyan: #00BCD4;
    --text-white: #FFFFFF;
    --text-gray: #9CA3AF;
    --glow-cyan: #00BCD4;
    --card-bg: #1A1F25;
    --border-color: #2A2F35;
    
    /* Fonts */
    --font-headlines: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    
    /* Spacing */
    --container-max-width: 1200px;
    --section-padding: 80px 0;
    --section-padding-mobile: 60px 0;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-white);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-headlines);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
}

h1 {
    font-size: 2.2rem;
    font-weight: 800;
}

h2 {
    font-size: 2.5rem;
    font-weight: 700;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 15px;
}

/* Color Classes */
.cyan-text {
    color: var(--accent-cyan);
}

.white-text {
    color: var(--text-white);
}

/* ==========================================================================
   HEADER
   ========================================================================== */

.header {
    background-color: var(--bg-primary);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

.header-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    max-height: 120px;
    height: auto;
    transition: opacity 0.3s ease;
}

.logo-fallback {
    font-family: var(--font-headlines);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--accent-cyan);
    text-decoration: none;
}

.header-cta {
    display: flex;
    align-items: center;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    font-family: var(--font-headlines);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-cyan), #008ba3);
    color: var(--text-white);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #008ba3, var(--accent-cyan));
    transform: translateY(-2px);
}

.btn-glow {
    box-shadow: 0 0 20px rgba(0, 188, 212, 0.3);
}

.btn-glow:hover {
    box-shadow: 0 0 30px rgba(0, 188, 212, 0.5);
}

.btn-cta {
    font-size: 1.2rem;
    padding: 18px 40px;
}

.btn-large {
    font-size: 1.3rem;
    padding: 20px 50px;
}

.btn-full-width {
    width: 100%;
    justify-content: center;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.hero-section {
    padding: 40px 0 60px;
    text-align: center;
    background: linear-gradient(135deg, var(--bg-primary) 0%, #0f1419 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(0, 188, 212, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    margin-bottom: 40px;
}

.hero-headline h1 {
    margin-bottom: 20px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.2;
    text-align: center;
}

.hero-headline h1 .white-text {
    font-size: 1.44rem;
    line-height: 1.25;
}

.hero-subheadline {
    max-width: 700px;
    margin: 0 auto 30px;
}

.hero-subheadline p {
    font-size: 0.975rem;
    color: var(--text-gray);
}

/* ==========================================================================
   CAPTURE FORM
   ========================================================================== */

.capture-form-container {
    max-width: 500px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.capture-form {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.form-group {
    margin-bottom: 20px;
}

.form-input {
    width: 100%;
    padding: 18px 25px;
    font-size: 1.1rem;
    background: var(--bg-primary);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-white);
    font-family: var(--font-body);
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--accent-cyan);
    box-shadow: 0 0 15px rgba(0, 188, 212, 0.2);
}

.form-input::placeholder {
    color: var(--text-gray);
    opacity: 0.8;
}

.form-disclaimer {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-top: 15px;
    margin-bottom: 0;
    text-align: center;
}

/* ==========================================================================
   OPPORTUNITY SECTION
   ========================================================================== */

.opportunity-section {
    padding: var(--section-padding);
    background: var(--bg-primary);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    color: var(--text-white);
    margin-bottom: 25px;
}

.section-intro {
    font-size: 1.2rem;
    color: var(--text-gray);
    line-height: 1.7;
}

.opportunity-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.opportunity-card {
    background: var(--card-bg);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.opportunity-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-cyan), transparent);
}

.opportunity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 188, 212, 0.1);
}

.card-icon {
    font-size: 3rem;
    color: var(--accent-cyan);
    margin-bottom: 25px;
}

.opportunity-card h3 {
    color: var(--text-white);
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.opportunity-card p {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.6;
}

/* ==========================================================================
   REPORT SECTION
   ========================================================================== */

.report-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--bg-primary) 0%, #0f1419 100%);
}

.report-cards {
    display: grid;
    gap: 25px;
    margin-top: 50px;
}

.report-card {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    background: var(--card-bg);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.report-card:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 188, 212, 0.1);
}

.report-card .card-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: rgba(0, 188, 212, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent-cyan);
}

.card-content h3 {
    color: var(--text-white);
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.card-content p {
    color: var(--text-gray);
    font-size: 1rem;
    margin-bottom: 0;
}

/* ==========================================================================
   TRUST SECTION
   ========================================================================== */

.trust-section {
    padding: var(--section-padding);
    background: var(--bg-primary);
}

.trust-features {
    display: grid;
    gap: 30px;
    margin-top: 50px;
    margin-bottom: 50px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.trust-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 188, 212, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--accent-cyan);
    flex-shrink: 0;
}

.trust-item h3 {
    color: var(--text-white);
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 0;
}

.quote-box {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 15px;
    border-left: 4px solid var(--accent-cyan);
    margin-top: 50px;
}

.quote-box blockquote {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text-gray);
    margin: 0;
    line-height: 1.7;
}

/* ==========================================================================
   FINAL CTA SECTION
   ========================================================================== */

.final-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(0, 188, 212, 0.05) 0%, var(--bg-primary) 100%);
    text-align: center;
    position: relative;
}

.final-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(0, 188, 212, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.final-cta-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}

.final-cta-content h2 {
    color: var(--text-white);
    font-size: 2.8rem;
    margin-bottom: 25px;
}

.final-cta-content p {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 40px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.footer {
    background: #060a0e;
    padding: 40px 0;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.footer p {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin: 0;
}

.footer-link {
    color: var(--accent-cyan);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--text-white);
}

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */

/* Tablet */
@media (max-width: 768px) {
    :root {
        --section-padding: var(--section-padding-mobile);
    }
    
    .header-container {
        padding: 0 20px;
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .logo {
        max-height: 85px;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero-subheadline p {
        font-size: 0.825rem;
    }
    
    .hero-section {
        padding: 30px 0 50px;
    }
    
    .hero-content {
        margin-bottom: 30px;
    }
    
    .hero-headline h1 {
        max-width: 100%;
        line-height: 1.15;
        margin-bottom: 15px;
    }
    
    .hero-subheadline {
        margin: 0 auto 25px;
    }
    
    .hero-headline h1 .white-text {
        font-size: 1.2rem;
    }
    
    .capture-form {
        padding: 30px 25px;
    }
    
    .opportunity-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .report-card {
        flex-direction: column;
        text-align: center;
    }
    
    .trust-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .final-cta-content h2 {
        font-size: 2.2rem;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    h1 {
        font-size: 1.4rem;
    }
    
    .hero-section {
        padding: 25px 0 40px;
    }
    
    .hero-content {
        margin-bottom: 25px;
    }
    
    .hero-headline h1 {
        line-height: 1.1;
        max-width: 100%;
        margin-bottom: 12px;
    }
    
    .hero-subheadline {
        margin: 0 auto 20px;
    }
    
    .hero-headline h1 .white-text {
        display: inline;
        font-size: 0.96rem;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    .btn {
        font-size: 0.9rem;
        padding: 12px 25px;
    }
    
    .btn-cta {
        font-size: 1rem;
        padding: 15px 30px;
    }
    
    .btn-large {
        font-size: 1.1rem;
        padding: 18px 35px;
    }
    
    .capture-form {
        padding: 25px 20px;
    }
    
    .form-input {
        padding: 15px 20px;
        font-size: 1rem;
    }
    
    .opportunity-card,
    .report-card {
        padding: 25px 20px;
    }
    
    .trust-features {
        gap: 25px;
    }
    
    .quote-box {
        padding: 30px 25px;
    }
    
    .final-cta-content h2 {
        font-size: 1.9rem;
    }
}

/* ===== AC FORM (id=7 / WECML) — MATCH ISR DARK THEME ===== */

/* 1) Transparent, flat container */
#_form_7_,
#_form_7_ form,
#_form_7_ ._form-content,
#_form_7_ ._form-inner,
#_form_7_ ._html-code,
#_form_7_ ._form-title,
#_form_7_ ._form_element,
#_form_7_ ._field-wrapper {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

/* 2) Optional: hide AC’s default title (we already show the H3 above the form) */
#_form_7_ ._form-title { display: none !important; }

/* 3) Typography + colors */
#_form_7_ * {
  font-family: var(--font-body) !important;
  color: var(--text-white) !important;
}
#_form_7_ label {
  font-weight: 600 !important;
  font-size: 15px !important;
  opacity: .9;
  display: block !important;
  text-align: left !important;
  margin: 2px 0 6px !important;
}

/* 4) Inputs: dark, rounded, on-brand focus */
#_form_7_ input[type="text"],
#_form_7_ input[type="email"] {
  width: 100% !important;
  border-radius: 10px !important;
  border: 1.5px solid #2A3440 !important;
  background: #0F151C !important;
  color: #FFFFFF !important;
  padding: 12px 14px !important;
  box-shadow: inset 0 1px 2px rgba(0,0,0,.35) !important;
  transition: border-color .2s, box-shadow .2s !important;
}
#_form_7_ input::placeholder { color: rgba(255,255,255,0.7) !important; }
#_form_7_ input:focus{
  border-color: var(--accent-cyan) !important;
  box-shadow: 0 0 0 3px rgba(0,188,212,.18), inset 0 1px 2px rgba(0,0,0,.35) !important;
  outline: none !important;
}

/* 5) Button: full-width, gradient cyan */
#_form_7_ ._button-wrapper { margin-top: 14px !important; }
#_form_7_ ._submit{
  background: linear-gradient(135deg,#00D5E8,#008BA3) !important;
  color:#fff !important;
  border:0 !important;
  border-radius: 12px !important;
  padding: 14px 20px !important;
  font-family: var(--font-headlines) !important;
  font-weight: 800 !important;
  letter-spacing:.4px !important;
  text-transform: uppercase !important;
  width: 100% !important;
  box-shadow: 0 10px 24px rgba(0,188,212,.25) !important;
  cursor: pointer !important;
  transition: transform .12s ease, box-shadow .12s ease !important;
}
#_form_7_ ._submit:hover{
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(0,188,212,.32) !important;
}

/* 6) Clamp widths so the form matches the capture card */
#_form_7_{ max-width: 480px; margin: 0 auto; }
#_form_7_ ._form-content{ max-width: 480px; margin: 0 auto; }

/* 7) Hide stray empty block (that rounded bar above the form) */
#capture-form > div:empty { display: none !important; }

/* 8) Mobile tweaks */
@media (max-width: 480px){
  #_form_7_ ._submit{ padding: 12px 16px !important; }
}


/* === POLISH THE CAPTURE CARD === */

/* Bring card closer to hero, tighten size */
.capture-form-wrapper{
  max-width: 560px;              /* a bit wider */
  margin: 20px auto 0;           /* less gap under subheadline */
  padding: 28px 28px 24px;
  background: rgba(255,255,255,0.035);  /* subtler glass */
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,.35), inset 0 1px 0 rgba(255,255,255,.04);
  backdrop-filter: blur(6px);
}

/* Labels: lighter + tighter */
#_form_3_ label{
  color: rgba(229,238,245,.9) !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  margin-bottom: 6px !important;
}

/* Inputs: slimmer height, stronger focus ring, less rounded */
#_form_3_ input[type="text"],
#_form_3_ input[type="email"]{
  border-radius: 10px !important;
  background: #0F151C !important;
  border: 1.5px solid #2A3440 !important;
  padding: 12px 14px !important;
  box-shadow: inset 0 1px 2px rgba(0,0,0,.35) !important;
}
#_form_3_ input:focus{
  border-color: #00BCD4 !important;
  box-shadow: 0 0 0 3px rgba(0,188,212,.18), inset 0 1px 2px rgba(0,0,0,.35) !important;
}

/* Button: brighter gradient, crisper text, small drop shadow */
#_form_3_ ._button-wrapper{ margin-top: 14px !important; }
#_form_3_ ._submit{
  background: linear-gradient(135deg,#00D5E8,#008BA3) !important;
  color:#fff !important;
  border:0 !important;
  border-radius: 12px !important;
  padding: 14px 20px !important;
  font-weight: 800 !important;
  letter-spacing:.4px !important;
  text-transform: uppercase !important;
  width: 100% !important;
  box-shadow: 0 10px 24px rgba(0,188,212,.25) !important;
  transition: transform .12s ease, box-shadow .12s ease !important;
}
#_form_3_ ._submit:hover{
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(0,188,212,.32) !important;
}

/* Subtle divider above button (nice hierarchy) */
#_form_3_ ._button-wrapper::before{
  content:"";
  display:block;
  height:1px;
  margin:10px 0 14px;
  background: linear-gradient(to right, transparent, rgba(255,255,255,.08), transparent);
}

/* Mobile spacing */
@media (max-width: 480px){
  .capture-form-wrapper{ padding: 20px; }
  #_form_3_ ._submit{ padding: 12px 16px !important; }
}

/* Title styling for the opt-in card */
.capture-form-title{
  margin: 0 0 10px;        /* smaller bottom space */
  font-size: 20px;         /* slightly smaller text */
  line-height: 1.1;
  color: #FFFFFF;
  font-weight: 800;
  letter-spacing: 0.2px;
  text-align: center;      /* center it inside the card */
}

/* Label + input colors */
#_form_3_ label {
  color: #FFFFFF !important;
  font-weight: 600 !important;
  font-size: 15px !important;
}

#_form_3_ input {
  color: #FFFFFF !important;
}

#_form_3_ input::placeholder {
  color: rgba(255,255,255,0.7) !important;
}

/* === Make the form the same width as the card === */
.capture-form-wrapper{
  max-width: 480px;         /* adjust 480–560 to taste */
  margin: 16px auto 0;
  padding: 24px;
}

#_form_3_{
  max-width: 480px;         /* must match wrapper */
  margin: 0 auto;
}

/* AC sometimes wraps content wider; clamp it too */
#_form_3_ ._form-content{
  max-width: 480px;
  margin: 0 auto;
}

/* Ensure all inner blocks fill the clamped width, not the page */
#_form_3_ ._form_element,
#_form_3_ ._field-wrapper,
#_form_3_ ._button-wrapper{
  width: 100% !important;
}

/* Labels: left align (they were centered), tighten spacing */
#_form_3_ label{
  display: block !important;
  text-align: left !important;
  color: #FFFFFF !important;
  font-weight: 600 !important;
  font-size: 15px !important;
  margin: 2px 0 6px !important;
}

/* Inputs stay full width *inside* the clamp */
#_form_3_ input[type="text"],
#_form_3_ input[type="email"]{
  width: 100% !important;
}

/* Button fills clamped width (not screen) */
#_form_3_ ._submit{
  width: 100% !important;
}

