/* ============================================================
   AG TRS TWO LLC — Main Stylesheet
   ============================================================ */

:root {
  --primary:   #0a2342;
  --accent:    #1a6bff;
  --accent2:   #00c2cb;
  --light:     #f4f7fc;
  --mid:       #e0e8f5;
  --text:      #1c2a3a;
  --muted:     #6b7c93;
  --white:     #ffffff;
  --radius:    8px;
  --shadow:    0 4px 24px rgba(10,35,66,.10);
  --transition: .25s ease;
  --max-width: 1160px;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
}

a { color: var(--accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent2); }

img { max-width: 100%; display: block; }

ul { list-style: none; }

.container {
  width: 90%;
  max-width: var(--max-width);
  margin: 0 auto;
}

.btn {
  display: inline-block;
  padding: .75rem 1.75rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
}
.btn-primary:hover {
  background: #0055e0;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26,107,255,.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--primary);
}
/* ============================================================
   HEADER / NAV
   ============================================================ */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(10,35,66,.08);
  transition: box-shadow var(--transition);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--primary);
  letter-spacing: -.02em;
}

.logo span { color: var(--accent); }

.logo-icon {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
}

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

.nav-links a {
  color: var(--text);
  font-weight: 500;
  font-size: .95rem;
  position: relative;
}

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

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

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

.nav-cta { margin-left: .5rem; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: all var(--transition);
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
/* ============================================================
   HERO
   ============================================================ */

.hero {
  padding: 140px 0 90px;
  background: linear-gradient(135deg, var(--primary) 0%, #0d3b6e 60%, #1a5fa8 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(26,107,255,.25) 0%, transparent 70%);
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -60px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(0,194,203,.18) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-badge {
  display: inline-block;
  background: rgba(26,107,255,.25);
  color: var(--accent2);
  border: 1px solid rgba(0,194,203,.4);
  padding: .35rem .9rem;
  border-radius: 20px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.25rem;
  letter-spacing: -.03em;
}

.hero h1 span { color: var(--accent2); }

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,.8);
  margin-bottom: 2rem;
  max-width: 480px;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-card {
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 16px;
  padding: 2rem;
  width: 100%;
  max-width: 380px;
}

.hero-card-title {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent2);
  margin-bottom: 1.5rem;
}

.hero-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.hero-stat {
  background: rgba(255,255,255,.06);
  border-radius: 10px;
  padding: 1rem;
  text-align: center;
}

.hero-stat-num {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.hero-stat-label {
  font-size: .75rem;
  color: rgba(255,255,255,.6);
  margin-top: .3rem;
}
/* ============================================================
   SECTIONS SHARED
   ============================================================ */

.section { padding: 90px 0; }
.section-alt { background: var(--light); }

.section-label {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .6rem;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--primary);
  line-height: 1.25;
  letter-spacing: -.02em;
  margin-bottom: 1rem;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 580px;
  margin-bottom: 3rem;
}

.section-header-center { text-align: center; }
.section-header-center .section-sub { margin-left: auto; margin-right: auto; }

/* ============================================================
   SERVICES GRID
   ============================================================ */

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

.service-card {
  background: var(--white);
  border: 1px solid var(--mid);
  border-radius: 12px;
  padding: 2rem 1.75rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.service-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
  border-color: transparent;
}

.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(26,107,255,.1), rgba(0,194,203,.1));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
}

.service-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: .6rem;
}

.service-card p {
  font-size: .92rem;
  color: var(--muted);
  line-height: 1.6;
}
/* ============================================================
   WHY US / FEATURES
   ============================================================ */

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

.feature-item {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  padding: 1.5rem;
  border-radius: 12px;
  background: var(--white);
  border: 1px solid var(--mid);
  transition: box-shadow var(--transition);
}

.feature-item:hover { box-shadow: var(--shadow); }

.feature-icon {
  width: 44px; height: 44px;
  flex-shrink: 0;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
}

.feature-item h4 {
  font-size: .98rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: .3rem;
}

.feature-item p { font-size: .88rem; color: var(--muted); }

/* ============================================================
   STATS BAR
   ============================================================ */

.stats-bar {
  background: linear-gradient(135deg, var(--primary), #0d3b6e);
  padding: 60px 0;
  color: var(--white);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-num {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--accent2);
  line-height: 1;
  margin-bottom: .4rem;
}

.stat-label {
  font-size: .88rem;
  color: rgba(255,255,255,.7);
}

/* ============================================================
   INDUSTRIES
   ============================================================ */

.industry-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 2rem;
}

.industry-tag {
  display: inline-block;
  background: var(--white);
  border: 1px solid var(--mid);
  border-radius: 24px;
  padding: .45rem 1.1rem;
  font-size: .85rem;
  color: var(--primary);
  font-weight: 500;
  transition: all var(--transition);
}

.industry-tag:hover {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

/* ============================================================
   CTA BAND
   ============================================================ */

.cta-band {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent2) 100%);
  padding: 80px 0;
  text-align: center;
  color: var(--white);
}

.cta-band h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  margin-bottom: .75rem;
}

.cta-band p {
  font-size: 1.05rem;
  opacity: .9;
  margin-bottom: 2rem;
}

.btn-white {
  background: var(--white);
  color: var(--accent);
  font-weight: 700;
}

.btn-white:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,.2);
}
/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
  background: var(--primary);
  color: rgba(255,255,255,.75);
  padding: 70px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 50px;
}

.footer-brand .logo { color: var(--white); margin-bottom: 1rem; }
.footer-brand p { font-size: .9rem; line-height: 1.7; max-width: 280px; }

.footer-col h5 {
  color: var(--white);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}

.footer-col ul li { margin-bottom: .55rem; }
.footer-col ul li a {
  color: rgba(255,255,255,.65);
  font-size: .9rem;
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--accent2); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  margin-bottom: .75rem;
  font-size: .88rem;
}

.footer-contact-icon {
  width: 20px;
  flex-shrink: 0;
  color: var(--accent2);
  margin-top: 2px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: .83rem;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  color: rgba(255,255,255,.55);
  font-size: .83rem;
}
.footer-bottom-links a:hover { color: var(--accent2); }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */

.page-hero {
  padding: 120px 0 60px;
  background: linear-gradient(135deg, var(--primary) 0%, #0d3b6e 100%);
  color: var(--white);
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  margin-bottom: .75rem;
}

.page-hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,.8);
  max-width: 540px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-size: .85rem;
  color: rgba(255,255,255,.55);
  margin-bottom: 1rem;
}

.breadcrumb a { color: rgba(255,255,255,.7); }
.breadcrumb a:hover { color: var(--accent2); }
.breadcrumb span { color: var(--accent2); }
/* ============================================================
   PROSE CONTENT (privacy, terms, about)
   ============================================================ */

.prose {
  max-width: 800px;
  margin: 0 auto;
}

.prose h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
  margin: 2.5rem 0 .75rem;
  padding-bottom: .4rem;
  border-bottom: 2px solid var(--mid);
}

.prose h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  margin: 1.75rem 0 .5rem;
}

.prose p {
  margin-bottom: 1rem;
  color: var(--text);
  font-size: .97rem;
}

.prose ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.prose ul li {
  margin-bottom: .4rem;
  font-size: .97rem;
  color: var(--text);
}

.prose a { color: var(--accent); }
.prose a:hover { color: var(--accent2); }

.prose .last-updated {
  display: inline-block;
  background: var(--mid);
  border-radius: 6px;
  padding: .3rem .75rem;
  font-size: .82rem;
  color: var(--muted);
  margin-bottom: 2rem;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: start;
}

.contact-info-card {
  background: var(--white);
  border: 1px solid var(--mid);
  border-radius: 14px;
  padding: 2.25rem;
  box-shadow: var(--shadow);
}

.contact-info-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.contact-detail {
  display: flex;
  gap: .9rem;
  align-items: flex-start;
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--mid);
}

.contact-detail:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.contact-detail-icon {
  width: 40px; height: 40px;
  flex-shrink: 0;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(26,107,255,.1), rgba(0,194,203,.1));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}

.contact-detail-label {
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--muted);
  margin-bottom: .2rem;
}

.contact-detail-value {
  font-size: .95rem;
  color: var(--text);
  font-weight: 500;
}

.contact-detail-value a { color: var(--accent); }

/* ============================================================
   CONTACT FORM
   ============================================================ */

.contact-form-card {
  background: var(--white);
  border: 1px solid var(--mid);
  border-radius: 14px;
  padding: 2.25rem;
  box-shadow: var(--shadow);
}

.contact-form-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  margin-bottom: 1.1rem;
}

.form-group label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: .4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .7rem 1rem;
  border: 1.5px solid var(--mid);
  border-radius: var(--radius);
  font-size: .93rem;
  color: var(--text);
  font-family: inherit;
  transition: border-color var(--transition), box-shadow var(--transition);
  background: var(--light);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(26,107,255,.12);
  background: var(--white);
}

.form-group textarea { resize: vertical; min-height: 130px; }
/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 992px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-visual { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem 1.5rem 2rem;
    box-shadow: 0 8px 24px rgba(10,35,66,.12);
    gap: 1.2rem;
    border-top: 1px solid var(--mid);
  }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom-links { justify-content: center; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}

@media (max-width: 480px) {
  .hero { padding: 110px 0 70px; }
  .section { padding: 60px 0; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .hero-actions { flex-direction: column; align-items: center; }
  .btn { width: 100%; text-align: center; }
}







