/* ===== Loans 365 — Fresh Design ===== */

:root{
  --blue:#2563EB;
  --blue-dark:#1D4ED8;
  --blue-light:#EFF6FF;
  --blue-soft:#DBEAFE;
  --white:#FFFFFF;
  --bg:#F8FAFC;
  --bg-alt:#F1F5F9;
  --text:#0F172A;
  --text-mid:#475569;
  --text-soft:#94A3B8;
  --border:#E2E8F0;
  --border-light:#F1F5F9;
  --radius-sm:10px;
  --radius:16px;
  --radius-lg:24px;
  --shadow-sm:0 1px 2px rgba(15,23,42,0.04);
  --shadow:0 1px 3px rgba(15,23,42,0.06),0 1px 2px rgba(15,23,42,0.04);
  --shadow-md:0 4px 16px rgba(15,23,42,0.06),0 2px 4px rgba(15,23,42,0.04);
  --shadow-lg:0 12px 40px rgba(15,23,42,0.08),0 4px 12px rgba(15,23,42,0.04);
  --shadow-xl:0 20px 60px rgba(15,23,42,0.10);
}

*{box-sizing:border-box;margin:0;padding:0;}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%;}
body{
  font-family:'Inter',-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;
  background:var(--white);
  color:var(--text);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}

img{max-width:100%;display:block;}
a{color:inherit;text-decoration:none;}

/* ---- Utility ---- */
.wrap{max-width:1120px;margin:0 auto;padding:0 28px;}

/* ---- Compliance strip ---- */
.compliance-strip{
  background:#FFFBEB;
  border-bottom:2px solid #FCD34D;
  font-size:12.5px;
  font-weight:600;
  color:#92400E;
  padding:8px 0;
  position:sticky;top:0;z-index:100;
}
.compliance-strip .wrap{
  display:flex;flex-wrap:wrap;gap:4px 12px;align-items:center;justify-content:center;text-align:center;
}
.compliance-strip a{color:#D97706;font-weight:700;text-decoration:underline;text-underline-offset:2px;}
.compliance-strip .sep{color:#D4A574;opacity:.6;}

/* ---- Header ---- */
.site-header{
  background:rgba(255,255,255,0.92);
  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);
  border-bottom:1px solid var(--border-light);
  position:sticky;top:38px;z-index:90;
}
.header-inner{
  display:flex;align-items:center;justify-content:space-between;
  height:64px;
}
.logo{
  display:flex;align-items:center;gap:6px;
  font-weight:800;font-size:22px;letter-spacing:-0.03em;color:var(--text);
}
.logo-icon{
  width:36px;height:36px;border-radius:10px;
  background:linear-gradient(135deg,var(--blue),var(--blue-dark));
  color:white;display:flex;align-items:center;justify-content:center;
  font-weight:900;font-size:10px;letter-spacing:-0.01em;
  box-shadow:0 4px 12px rgba(37,99,235,0.25);
}
.logo span{color:var(--blue);}

.main-nav{display:flex;gap:32px;align-items:center;}
.main-nav a{font-size:14.5px;color:var(--text-mid);font-weight:500;transition:color .15s;padding:6px 0;}
.main-nav a:hover{color:var(--blue);}

/* ---- Buttons ---- */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:8px;
  padding:13px 28px;border-radius:999px;font-weight:700;font-size:15px;
  cursor:pointer;border:none;transition:all .2s ease;
  white-space:nowrap;font-family:inherit;letter-spacing:-0.01em;
}
.btn-primary{
  background:var(--blue);
  color:white;
  box-shadow:0 4px 16px rgba(37,99,235,0.30);
}
.btn-primary:hover{background:var(--blue-dark);transform:translateY(-1px);box-shadow:0 8px 24px rgba(37,99,235,0.40);}
.btn-outline{
  background:white;
  color:var(--blue);
  border:2px solid var(--blue-soft);
}
.btn-outline:hover{background:var(--blue-light);border-color:var(--blue);}
.btn-lg{padding:16px 36px;font-size:16.5px;}
.btn-block{width:100%;}

/* ---- Section dividers ---- */
.section-wave{
  position:relative;
  height:60px;
  overflow:hidden;
  margin-top:-1px;
}
.section-wave svg{
  position:absolute;bottom:0;width:100%;height:60px;
}
.section-wave-top svg{top:0;bottom:auto;}

/* ---- Hero ---- */
.hero{
  padding:80px 0 60px;
  text-align:center;
  position:relative;
  background:linear-gradient(180deg,var(--blue-light) 0%,var(--white) 40%);
}
.hero-badge{
  display:inline-flex;align-items:center;gap:6px;
  background:white;
  border:1px solid var(--blue-soft);
  padding:6px 16px;border-radius:999px;
  font-size:13px;font-weight:600;color:var(--blue);
  margin-bottom:28px;
  box-shadow:var(--shadow-sm);
}
.hero-badge .dot{
  width:7px;height:7px;border-radius:50%;background:var(--blue);
}
.hero h1{
  font-size:clamp(36px,6vw,64px);
  line-height:1.06;letter-spacing:-0.03em;
  margin:0 auto 20px;max-width:720px;font-weight:900;
}
.hero h1 em{font-style:normal;color:var(--blue);}
.hero p.lead{
  font-size:18px;color:var(--text-mid);line-height:1.7;
  max-width:560px;margin:0 auto 36px;
}
.hero-actions{display:flex;gap:14px;justify-content:center;flex-wrap:wrap;margin-bottom:48px;}
.hero-illustration{
  max-width:480px;margin:0 auto;
}

/* Trust bar */
.trust-bar{
  display:flex;justify-content:center;gap:48px;flex-wrap:wrap;
  padding:0 0 20px;
}
.trust-item{
  display:flex;align-items:center;gap:10px;
  font-size:13.5px;color:var(--text-mid);font-weight:500;
}
.trust-icon{
  width:36px;height:36px;border-radius:10px;
  background:var(--blue-light);
  display:flex;align-items:center;justify-content:center;font-size:16px;
}

/* ---- Quote section ---- */
.quote-section{
  padding:64px 0 80px;
  background:var(--white);
}
.quote-section .section-label{
  text-align:center;margin-bottom:12px;
  font-size:13px;font-weight:700;text-transform:uppercase;letter-spacing:.08em;color:var(--blue);
}
.quote-section h2{
  text-align:center;font-size:clamp(26px,3.5vw,38px);font-weight:800;letter-spacing:-0.02em;margin-bottom:36px;
}
.quote-card{
  max-width:500px;margin:0 auto;
  background:white;
  border:1px solid var(--border);
  border-radius:var(--radius-lg);
  padding:32px;
  box-shadow:var(--shadow-lg);
}
.quote-card h3{font-size:17px;font-weight:700;margin-bottom:22px;color:var(--text);}
.quote-field{margin-bottom:20px;}
.quote-field label{
  display:block;font-size:12.5px;color:var(--text-soft);margin-bottom:6px;
  font-weight:600;text-transform:uppercase;letter-spacing:.05em;
}
.amount-display{
  font-size:36px;font-weight:900;color:var(--blue);margin-bottom:8px;
  letter-spacing:-0.02em;
}

/* Range slider */
input[type=range]{
  width:100%;height:8px;border-radius:8px;
  background:var(--blue-soft);
  -webkit-appearance:none;appearance:none;outline:none;
}
input[type=range]::-webkit-slider-thumb{
  -webkit-appearance:none;width:24px;height:24px;border-radius:50%;
  background:var(--blue);
  border:3px solid white;cursor:pointer;
  box-shadow:0 2px 8px rgba(37,99,235,0.35);
}

/* Inputs */
input[type=email],input[type=text],input[type=tel],textarea{
  width:100%;padding:14px 16px;border-radius:var(--radius-sm);
  background:var(--bg);
  border:2px solid var(--border);
  color:var(--text);font-size:15px;font-family:inherit;
  outline:none;transition:border-color .2s,background .2s;
}
input::placeholder,textarea::placeholder{color:var(--text-soft);}
input:focus,textarea:focus{
  border-color:var(--blue);
  background:white;
}
.form-error{
  background:#FEF2F2;border:1px solid #FECACA;
  color:#B91C1C;font-size:13px;padding:10px 14px;border-radius:var(--radius-sm);margin-bottom:16px;
  display:none;
}
.form-error.show{display:block;}
.form-success{
  background:#F0FDF4;border:1px solid #BBF7D0;
  color:#166534;font-size:13px;padding:10px 14px;border-radius:var(--radius-sm);margin-bottom:16px;
}
.fine-print{font-size:11.5px;color:var(--text-soft);margin-top:16px;line-height:1.5;text-align:center;}

/* Risk banner */
.risk-banner{
  max-width:500px;margin:16px auto 0;padding:14px 20px;border-radius:var(--radius);
  background:#FFFBEB;border:1px solid #FCD34D;
  color:#92400E;font-size:12.5px;line-height:1.6;text-align:center;
}
.risk-banner a{color:#D97706;font-weight:600;text-decoration:underline;text-underline-offset:2px;}

/* ---- How it works (timeline) ---- */
.how-section{
  padding:80px 0;
  background:var(--bg);
  position:relative;
}
.section-label{
  text-align:center;margin-bottom:12px;
  font-size:13px;font-weight:700;text-transform:uppercase;letter-spacing:.08em;color:var(--blue);
}
.section-title{
  text-align:center;font-size:clamp(26px,3.5vw,38px);font-weight:800;letter-spacing:-0.02em;margin-bottom:12px;
}
.section-sub{
  text-align:center;font-size:16px;color:var(--text-mid);max-width:520px;margin:0 auto 52px;line-height:1.6;
}

.timeline{
  max-width:800px;margin:0 auto;position:relative;
}
.timeline::before{
  content:'';position:absolute;left:35px;top:12px;bottom:12px;
  width:2px;background:var(--blue);
  opacity:.25;
}
.timeline-step{
  display:flex;gap:24px;align-items:flex-start;
  margin-bottom:32px;position:relative;
}
.timeline-step:last-child{margin-bottom:0;}
.timeline-num{
  width:72px;height:72px;border-radius:20px;flex-shrink:0;
  background:white;border:2px solid var(--blue-soft);
  display:flex;align-items:center;justify-content:center;
  font-weight:900;font-size:22px;color:var(--blue);
  position:relative;z-index:1;
  box-shadow:var(--shadow);
}
.timeline-content{
  padding-top:8px;
}
.timeline-content h3{font-size:19px;font-weight:700;margin-bottom:6px;letter-spacing:-0.01em;}
.timeline-content p{font-size:15px;color:var(--text-mid);line-height:1.7;}

/* ---- Features (bento grid) ---- */
.features-section{
  padding:80px 0;
  background:var(--white);
}
.bento-grid{
  display:grid;
  grid-template-columns:1fr 1fr 1fr;
  grid-template-rows:auto auto;
  gap:20px;
  max-width:960px;margin:0 auto;
}
.bento-card{
  background:var(--bg);
  border:1px solid var(--border-light);
  border-radius:var(--radius-lg);
  padding:32px 28px;
  transition:box-shadow .2s,border-color .2s;
}
.bento-card:hover{border-color:var(--blue-soft);box-shadow:var(--shadow-md);}
.bento-card.wide{grid-column:span 2;}
.bento-card .bento-icon{
  width:48px;height:48px;border-radius:14px;
  background:var(--blue-light);
  display:flex;align-items:center;justify-content:center;
  font-size:22px;margin-bottom:18px;
}
.bento-card h4{font-size:17px;font-weight:700;margin-bottom:8px;letter-spacing:-0.01em;}
.bento-card p{font-size:14.5px;color:var(--text-mid);line-height:1.65;}

/* ---- About ---- */
.about-section{
  padding:80px 0;
  background:var(--bg);
}
.about-grid{
  display:grid;grid-template-columns:1fr 1fr;gap:64px;align-items:center;
  max-width:1000px;margin:0 auto;
}
.about-visual{
  display:flex;align-items:center;justify-content:center;
  position:relative;
}
.about-blob{
  width:280px;height:280px;border-radius:40% 60% 60% 40% / 50% 45% 55% 50%;
  background:linear-gradient(135deg,var(--blue-light),var(--blue-soft),var(--white));
  display:flex;align-items:center;justify-content:center;
  box-shadow:var(--shadow-lg);
  animation:morph 10s ease-in-out infinite;
}
@keyframes morph{
  0%,100%{border-radius:40% 60% 60% 40% / 50% 45% 55% 50%;}
  25%{border-radius:55% 45% 40% 60% / 55% 50% 50% 45%;}
  50%{border-radius:45% 55% 50% 50% / 40% 55% 45% 60%;}
  75%{border-radius:60% 40% 45% 55% / 50% 45% 55% 50%;}
}
.about-blob-inner{
  font-size:64px;
  opacity:.9;
}
.about-text h2{
  font-size:clamp(24px,3vw,34px);font-weight:800;letter-spacing:-0.02em;margin-bottom:16px;
}
.about-text p{font-size:15.5px;color:var(--text-mid);line-height:1.75;margin-bottom:16px;}
.about-text p:last-child{margin-bottom:24px;}

/* ---- Help / FAQ page ---- */
.help-section{
  padding:64px 0 80px;
}
.help-header{text-align:center;max-width:600px;margin:0 auto 48px;}
.help-header h1{font-size:clamp(28px,4vw,42px);font-weight:800;letter-spacing:-0.02em;margin-bottom:12px;}
.help-header p{font-size:16px;color:var(--text-mid);}

.faq-list{max-width:720px;margin:0 auto;display:flex;flex-direction:column;gap:10px;}
.faq-item{
  background:white;
  border:1px solid var(--border);
  border-radius:var(--radius);
  overflow:hidden;
  transition:border-color .2s;
}
.faq-item.open{border-color:var(--blue-soft);box-shadow:var(--shadow-sm);}
.faq-q{
  padding:20px 24px;display:flex;align-items:center;justify-content:space-between;
  cursor:pointer;font-weight:600;font-size:15.5px;color:var(--text);
  user-select:none;
}
.faq-q:hover{color:var(--blue);}
.faq-chevron{
  width:24px;height:24px;border-radius:8px;
  background:var(--blue-light);color:var(--blue);
  display:flex;align-items:center;justify-content:center;
  font-weight:700;font-size:16px;transition:transform .25s ease;
  flex-shrink:0;margin-left:16px;
}
.faq-item.open .faq-chevron{transform:rotate(45deg);}
.faq-a{max-height:0;overflow:hidden;transition:max-height .3s ease;}
.faq-item.open .faq-a{max-height:400px;}
.faq-a-inner{padding:0 24px 22px;color:var(--text-mid);font-size:14.5px;line-height:1.7;}

/* ---- Start / Apply page ---- */
.apply-section{padding:64px 0;}
.apply-header{text-align:center;max-width:560px;margin:0 auto 36px;}
.apply-header h1{font-size:clamp(26px,3.5vw,36px);font-weight:800;letter-spacing:-0.02em;margin-bottom:10px;}
.apply-header p{font-size:15.5px;color:var(--text-mid);}
.apply-card{
  max-width:800px;margin:0 auto;
  background:white;border:1px solid var(--border);
  border-radius:var(--radius-lg);padding:28px 32px;
  box-shadow:var(--shadow-md);
}

/* ---- Phonexa embed theming ---- */
.phonexa-embed{
  width:100%;color:var(--text);
  font-family:'Inter',-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif !important;
}
.phonexa-embed,.phonexa-embed *{
  box-sizing:border-box;
  font-family:'Inter',-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif !important;
}
.phonexa-embed h4,
.phonexa-embed .omFormTopSection > h4,
.phonexa-embed #omReApplyGreenRow,
.phonexa-embed .omReApplyGreenRow{display:none !important;}

.phonexa-embed .omForm,
.phonexa-embed .omFormContainer,
.phonexa-embed .omFormFrame,
.phonexa-embed .omFormContent,
.phonexa-embed .omFormTopSection,
.phonexa-embed .omFormBttmSection,
.phonexa-embed .form_width_770{
  width:100% !important;max-width:100% !important;
  background:transparent !important;box-shadow:none !important;
  border:none !important;margin:0 !important;padding:0 !important;
}
.phonexa-embed .omClmnsBox{
  display:flex !important;flex-wrap:wrap !important;gap:12px !important;
  width:100% !important;margin-bottom:12px !important;
}
.phonexa-embed .omClmn,
.phonexa-embed .omClmn_33,
.phonexa-embed .omClmn_50,
.phonexa-embed .omClmn_66,
.phonexa-embed .omFieldRow{
  width:auto !important;flex:1 1 220px !important;
  min-width:0 !important;max-width:none !important;
  padding:0 !important;margin:0 !important;
}
.phonexa-embed .omFieldRowTitle{
  font-size:12.5px !important;color:var(--text-soft) !important;
  font-weight:600 !important;text-transform:uppercase !important;
  letter-spacing:.05em !important;margin-bottom:4px !important;
}
.phonexa-embed .omLabel,
.phonexa-embed label{
  display:block !important;font-size:12.5px !important;
  color:var(--text-soft) !important;margin-bottom:6px !important;
  font-weight:600 !important;text-transform:uppercase !important;
  letter-spacing:.05em !important;background:none !important;
}

.phonexa-embed input[type=text],
.phonexa-embed input[type=email],
.phonexa-embed input[type=tel],
.phonexa-embed input[type=number],
.phonexa-embed input[type=password],
.phonexa-embed input[type=date],
.phonexa-embed .omInputText,
.phonexa-embed .form-input,
.phonexa-embed select,
.phonexa-embed .omForm-dropdown,
.phonexa-embed textarea{
  width:100% !important;padding:12px 14px !important;
  border-radius:var(--radius-sm) !important;
  background:var(--bg) !important;border:2px solid var(--border) !important;
  color:var(--text) !important;font-size:14.5px !important;
  font-family:inherit !important;outline:none !important;
  box-shadow:none !important;appearance:none;-webkit-appearance:none;
  transition:border-color .2s;
}
.phonexa-embed input::placeholder,
.phonexa-embed textarea::placeholder{color:var(--text-soft) !important;}
.phonexa-embed input:focus,
.phonexa-embed select:focus,
.phonexa-embed textarea:focus{
  border-color:var(--blue) !important;background:white !important;
}

.phonexa-embed input[type=checkbox],
.phonexa-embed input[type=radio],
.phonexa-embed .omCheckboxCustom{width:auto !important;accent-color:var(--blue) !important;margin-right:8px !important;}
.phonexa-embed .omCheckboxCustom-label,
.phonexa-embed .omQ-privacy-text{color:var(--text-soft) !important;font-size:12.5px !important;line-height:1.6 !important;}
.phonexa-embed .omQ-privacy-text a,
.phonexa-embed .doc_link,
.phonexa-embed .terms_link,
.phonexa-embed .privacy_link,
.phonexa-embed .unsubscribe_link{color:var(--blue) !important;}

.phonexa-embed button,
.phonexa-embed input[type=submit],
.phonexa-embed input[type=button],
.phonexa-embed .omButton,
.phonexa-embed .omBttnFind,
.phonexa-embed .omReapplyButton{
  display:inline-flex !important;align-items:center !important;justify-content:center !important;
  gap:8px !important;width:100% !important;padding:14px 24px !important;
  border-radius:999px !important;font-weight:700 !important;font-size:15px !important;
  cursor:pointer !important;border:none !important;
  background:var(--blue) !important;color:white !important;
  box-shadow:0 4px 16px rgba(37,99,235,0.30) !important;
  transition:all .2s ease;font-family:inherit !important;
}
.phonexa-embed button:hover,
.phonexa-embed input[type=submit]:hover,
.phonexa-embed .omButton:hover{
  background:var(--blue-dark) !important;transform:translateY(-1px);
  box-shadow:0 8px 24px rgba(37,99,235,0.40) !important;
}
.phonexa-embed a{color:var(--blue) !important;}

.phonexa-embed .omFormBlueBlock,
.phonexa-embed .omFormWhiteBlock,
.phonexa-embed .omReApplyBlueBg,
.phonexa-embed .omReApplyLoanConfirm,
.phonexa-embed .omDataOD{
  background:var(--blue-light) !important;
  border:1px solid var(--blue-soft) !important;
  border-radius:var(--radius) !important;color:var(--text) !important;
  padding:20px !important;box-shadow:none !important;
}
.phonexa-embed .omFormBlueNote,
.phonexa-embed .omFormNote,
.phonexa-embed .omTooltip-text{color:var(--text-mid) !important;background:transparent !important;}
.phonexa-embed .omReApplyName,
.phonexa-embed .omReApplyGetHead{color:var(--blue) !important;}
.phonexa-embed .omReApplyGreenRow{
  background:linear-gradient(135deg,var(--blue),var(--blue-dark)) !important;
  color:white !important;border-radius:12px !important;
}
.phonexa-embed .omErrorPage,
.phonexa-embed .error,
.phonexa-embed .form-error,
.phonexa-embed .invalid-feedback{
  background:#FEF2F2 !important;border:1px solid #FECACA !important;
  color:#B91C1C !important;font-size:13px !important;
  padding:10px 14px !important;border-radius:var(--radius-sm) !important;margin-top:6px !important;
}

/* Interstitial */
.phonexa-embed .omInterstitial{
  background:white !important;border:1px solid var(--border) !important;
  border-radius:var(--radius) !important;color:var(--text) !important;
  padding:0 !important;overflow:hidden;
}
.phonexa-embed .omInterstitial-header{
  background:var(--bg) !important;color:var(--text) !important;
  border-radius:0 !important;padding:14px 18px !important;margin:0 !important;
}
.phonexa-embed .omInterstitial-header__title{color:var(--text) !important;font-weight:700 !important;}
.phonexa-embed .omInterstitial-header__description{color:var(--text-mid) !important;}
.phonexa-embed .omInterstitial-content{
  background:transparent !important;border:none !important;
  border-radius:0 !important;overflow:visible;padding:14px 18px 18px !important;
}
.phonexa-embed .omInterstitial-item{background:transparent !important;margin-bottom:10px !important;}
.phonexa-embed .omInterstitial-item:last-child{margin-bottom:0 !important;}
.phonexa-embed .omInterstitial-field,
.phonexa-embed .omInterstitial-field_select{
  width:100% !important;padding:12px 14px !important;border-radius:var(--radius-sm) !important;
  background:var(--bg) !important;border:2px solid var(--border) !important;
  color:var(--text) !important;font-size:14.5px !important;
  font-family:inherit !important;appearance:none !important;-webkit-appearance:none !important;
}
.phonexa-embed .omInterstitial-field:focus{border-color:var(--blue) !important;background:white !important;}
.phonexa-embed .omInterstitial-button{
  display:inline-flex !important;align-items:center !important;justify-content:center !important;
  width:100% !important;padding:14px 24px !important;border-radius:999px !important;
  font-weight:700 !important;font-size:15px !important;cursor:pointer !important;
  border:none !important;background:var(--blue) !important;
  color:white !important;box-shadow:0 4px 16px rgba(37,99,235,0.30) !important;
}
.phonexa-embed .omInterstitial-button:hover{background:var(--blue-dark) !important;transform:translateY(-1px);}

.phonexa-embed .omReApplyLoanClmn33,
.phonexa-embed .omReApplyLoanCenter,
.phonexa-embed .omReApplyClmns,
.phonexa-embed .omReApplyClmnsAmount,
.phonexa-embed .omReApplymdl{background-image:none !important;background-color:transparent !important;}
.phonexa-embed #omReApplyDobDay,
.phonexa-embed #omReApplyDobMonth,
.phonexa-embed #omReApplyDobYear,
.phonexa-embed #omReApplyAmount,
.phonexa-embed #omReaplyZip,
.phonexa-embed #omReaplyPhone{
  background-image:none !important;background-color:var(--bg) !important;
  color:var(--text) !important;border:2px solid var(--border) !important;
}

@media (max-width:640px){
  .phonexa-embed .omClmnsBox{flex-direction:column !important;}
  .phonexa-embed .omClmn,
  .phonexa-embed .omClmn_33,
  .phonexa-embed .omClmn_50,
  .phonexa-embed .omClmn_66{flex-basis:100% !important;}
  .apply-card{padding:20px 18px !important;}
}

/* ---- Contact page ---- */
.contact-section{padding:64px 0 80px;}
.contact-grid{
  display:grid;grid-template-columns:1fr 1fr;gap:40px;align-items:start;
  max-width:1000px;margin:0 auto;
}
.contact-form-card{
  background:white;border:1px solid var(--border);
  border-radius:var(--radius-lg);padding:32px;
  box-shadow:var(--shadow-md);
}
.contact-form-card h2{font-size:22px;font-weight:700;margin-bottom:4px;}
.contact-form-card .sub{color:var(--text-mid);font-size:14px;margin-bottom:24px;}
.field{margin-bottom:18px;}
.field label{display:block;font-size:12.5px;color:var(--text-soft);margin-bottom:6px;font-weight:600;text-transform:uppercase;letter-spacing:.05em;}
.field-row{display:grid;grid-template-columns:1fr 1fr;gap:14px;}

.contact-info-card{
  background:var(--bg);border:1px solid var(--border-light);
  border-radius:var(--radius-lg);padding:28px;
}
.contact-info-card h3{font-size:18px;font-weight:700;margin-bottom:18px;}
.info-row{display:flex;gap:14px;margin-bottom:16px;align-items:flex-start;}
.info-row:last-child{margin-bottom:0;}
.info-dot{
  width:40px;height:40px;border-radius:12px;flex-shrink:0;
  background:white;border:1px solid var(--border);
  display:flex;align-items:center;justify-content:center;font-size:17px;
}
.info-row .lbl{color:var(--text-soft);font-size:11.5px;text-transform:uppercase;letter-spacing:.05em;margin-bottom:2px;font-weight:600;}
.info-row p,.info-row div p{margin:0;color:var(--text-mid);font-size:14px;line-height:1.6;}
.info-row a{color:var(--blue);font-weight:500;}
.map-wrap{margin-top:18px;border-radius:var(--radius);overflow:hidden;border:1px solid var(--border);}

/* ---- Footer ---- */
.site-footer{
  background:var(--text);
  color:white;
  padding:56px 0 32px;
  margin-top:40px;
}
.footer-grid{
  display:grid;grid-template-columns:1fr 1fr;gap:40px;
  max-width:1000px;margin:0 auto;
}
.footer-brand .logo{color:white;margin-bottom:8px;}
.footer-brand .logo span{color:#60A5FA;}
.footer-brand small{color:#94A3B8;font-size:13px;}
.footer-legal{color:#94A3B8;font-size:12px;line-height:1.8;}
.footer-links{
  display:flex;flex-wrap:wrap;gap:8px 20px;
  padding-top:24px;margin-top:32px;border-top:1px solid #334155;
  max-width:1000px;margin-left:auto;margin-right:auto;
}
.footer-links a{font-size:13px;color:#94A3B8;transition:color .15s;}
.footer-links a:hover{color:white;}

@media (max-width:900px){
  .hero h1{font-size:clamp(28px,8vw,44px);}
  .bento-grid{grid-template-columns:1fr;}
  .bento-card.wide{grid-column:span 1;}
  .timeline::before{left:27px;}
  .timeline-num{width:56px;height:56px;font-size:18px;}
  .about-grid{grid-template-columns:1fr;gap:40px;}
  .about-blob{width:200px;height:200px;}
  .contact-grid{grid-template-columns:1fr;}
  .footer-grid{grid-template-columns:1fr;}
  .main-nav{display:none;}
  .field-row{grid-template-columns:1fr;}
  .trust-bar{gap:24px;}
  .trust-item{font-size:12px;}
}