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

:root {
  --navy: #0a1e3d;
  --navy-light: #132d5e;
  --blue: #1a4b8c;
  --blue-accent: #2563eb;
  --gold: #c9a84c;
  --gold-light: #e0c872;
  --white: #ffffff;
  --off-white: #f8f9fc;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
}

html {
  height: 100%;
  width: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--gray-800);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy);
  padding: 12px 24px;
  border-radius: 0 0 8px 8px;
  font-weight: 600;
  z-index: 9999;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-label-light {
  color: var(--gold-light);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 6px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.02em;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(201, 168, 76, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}

.btn-outline-light:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

.btn-lg {
  padding: 18px 40px;
  font-size: 1.05rem;
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s ease;
}

.navbar.scrolled {
  background: rgba(10, 30, 61, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 12px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  height: 52px;
  width: auto;
  transition: height 0.3s ease;
}

.navbar.scrolled .nav-logo img {
  height: 44px;
}

.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 36px;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  transition: color 0.3s ease;
  letter-spacing: 0.01em;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--white);
}

.nav-cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  padding: 10px 24px !important;
  border-radius: 6px;
  font-weight: 600 !important;
  transition: all 0.3s ease !important;
}

.nav-cta:hover {
  background: var(--gold-light) !important;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

.nav-close-wrap {
  display: none;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s ease;
}

/* HERO */
.hero {
  position: relative;
  height: 100vh;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-video-wrap {
  position: absolute;
  inset: -5%;
  z-index: 0;
  overflow: hidden;
  background: var(--navy);
}

.hero-video-placeholder {
  position: absolute;
  inset: 0;
  background: var(--navy);
}

@media (max-width: 768px) {
  .hero-video-wrap iframe,
  .hero-video-wrap #heroVideoPlayer {
    display: none;
  }

  .hero-video-wrap {
    background: linear-gradient(160deg, rgba(10, 30, 61, 0.85) 0%, rgba(10, 30, 61, 0.75) 100%),
      url('attached_assets/Ansel Taylor/dredging-projects-image-0159551.jpg') center/cover no-repeat;
  }

  .hero-overlay {
    background: rgba(10, 30, 61, 0.3);
  }
}

.hero-video-wrap iframe,
.hero-video-wrap #heroVideoPlayer {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw;
  min-height: 100vh;
  min-width: 177.78vh;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 30, 61, 0.75) 0%,
    rgba(10, 30, 61, 0.6) 50%,
    rgba(10, 30, 61, 0.8) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 24px;
}

.hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  color: var(--white);
  font-weight: 600;
  margin-bottom: 24px;
  line-height: 1.15;
}

.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.5);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

/* VALUE PROPS */
.value-props {
  padding: 0;
  margin-top: -60px;
  position: relative;
  z-index: 10;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.value-card {
  background: var(--white);
  padding: 48px 36px;
  text-align: center;
  border: 1px solid var(--gray-200);
  transition: all 0.3s ease;
}

.value-card:first-child {
  border-radius: 12px 0 0 12px;
}

.value-card:last-child {
  border-radius: 0 12px 12px 0;
}

.value-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-4px);
  z-index: 1;
  border-radius: 12px;
}

.value-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
}

.value-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--blue);
  stroke-width: 1.5;
}

.value-card h3 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
}

.value-card p {
  font-size: 0.92rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* GUIDE SECTION */
.guide-section {
  padding: 120px 0;
}

.guide-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.guide-image {
  position: relative;
}

.guide-image-frame {
  width: 100%;
  padding-bottom: 110%;
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}

.guide-image-frame img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.guide-image-frame::after {
  content: '';
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 60%;
  height: 60%;
  border: 3px solid var(--gold);
  border-radius: 12px;
  z-index: -1;
}

.guide-content h2 {
  font-size: 2.4rem;
  color: var(--navy);
  margin-bottom: 24px;
}

.guide-content p {
  font-size: 1.05rem;
  color: var(--gray-600);
  margin-bottom: 20px;
  line-height: 1.8;
}

.guide-content .btn {
  margin-top: 12px;
}

/* TESTIMONIAL */
.testimonial-section {
  padding: 100px 0;
  background: var(--off-white);
}

.testimonial-alt {
  background: var(--white);
}

.testimonial-card {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.quote-icon {
  width: 40px;
  height: 40px;
  color: var(--gold);
  margin-bottom: 28px;
  opacity: 0.6;
}

.testimonial-card blockquote p {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--gray-700);
  line-height: 1.7;
  margin-bottom: 32px;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.author-name {
  font-weight: 600;
  color: var(--navy);
  font-size: 1rem;
}

/* RISK SECTION */
.risk-section {
  padding: 120px 0;
  background: linear-gradient(160deg, rgba(10, 30, 61, 0.92) 0%, rgba(10, 30, 61, 0.88) 100%),
    url('attached_assets/Ansel Taylor/dredging-projects-image-0159551.jpg') center/cover no-repeat;
  color: var(--white);
  text-align: center;
}

.risk-section h2 {
  font-size: 2.2rem;
  color: var(--white);
  max-width: 700px;
  margin: 0 auto 60px;
}

.risk-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 800px;
  margin: 0 auto 60px;
}

.risk-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  text-align: left;
  padding: 24px;
  background: rgba(255,255,255,0.06);
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.08);
  transition: background 0.3s ease;
}

.risk-item:hover {
  background: rgba(255,255,255,0.1);
}

.risk-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}

.risk-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--gold);
}

.risk-item p {
  font-size: 1rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
}

.risk-cta {
  max-width: 640px;
  margin: 0 auto;
}

.risk-cta-text {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 32px;
  line-height: 1.7;
}

.risk-cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* AUTHORITY SECTION */
.authority-section {
  padding: 120px 0;
}

.authority-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.authority-content h2 {
  font-size: 2.4rem;
  color: var(--navy);
  margin-bottom: 24px;
}

.authority-content p {
  font-size: 1rem;
  color: var(--gray-600);
  margin-bottom: 16px;
  line-height: 1.8;
}

.authority-badges {
  display: flex;
  gap: 32px;
  margin-top: 36px;
  padding-top: 36px;
  border-top: 1px solid var(--gray-200);
}

.badge {
  text-align: center;
}

.badge-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
}

.badge-label {
  font-size: 0.8rem;
  color: var(--gray-500);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.authority-image-frame {
  width: 100%;
  padding-bottom: 110%;
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}

.authority-image-frame img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.authority-image-frame::before {
  content: '';
  position: absolute;
  top: -16px;
  left: -16px;
  width: 60%;
  height: 60%;
  border: 3px solid var(--gold);
  border-radius: 12px;
  z-index: -1;
}

/* PLAN SECTION */
.plan-section {
  padding: 120px 0;
  background: var(--off-white);
  text-align: center;
}

.plan-section h2 {
  font-size: 2.4rem;
  color: var(--navy);
  max-width: 600px;
  margin: 0 auto 64px;
}

.plan-grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  max-width: 960px;
  margin: 0 auto 60px;
}

.plan-step {
  flex: 1;
  padding: 0 32px;
  text-align: center;
}

.plan-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.plan-step h3 {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
}

.plan-step p {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.7;
}

.plan-connector {
  width: 60px;
  height: 2px;
  background: var(--gray-300);
  margin-top: 28px;
  flex-shrink: 0;
}

.plan-cta {
  text-align: center;
}

/* SERVICES SECTION */
.services-section {
  padding: 120px 0;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white);
  text-align: center;
}

.services-section h2 {
  font-size: 2.4rem;
  color: var(--white);
  margin-bottom: 60px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}

.service-item {
  display: flex;
  align-items: center;
  gap: 14px;
  text-align: left;
  padding: 24px;
  background: rgba(255,255,255,0.06);
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.08);
  transition: background 0.3s ease;
}

.service-item:hover {
  background: rgba(255,255,255,0.1);
}

.service-item svg {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  stroke: var(--gold);
}

.service-item span {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.9);
  line-height: 1.5;
}

/* CTA SECTION */
.cta-section {
  padding: 120px 0;
  text-align: center;
  background: linear-gradient(160deg, rgba(10, 30, 61, 0.9) 0%, rgba(10, 30, 61, 0.85) 100%),
    url('attached_assets/Ansel Taylor/dredge-0159557.jpg') center/cover no-repeat;
}

.cta-content {
  max-width: 600px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 2.4rem;
  color: var(--white);
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 36px;
  line-height: 1.7;
}

.cta-note {
  display: block;
  margin-top: 16px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

/* FOOTER */
.footer {
  padding: 72px 0 36px;
  background: var(--gray-900);
  color: rgba(255,255,255,0.7);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 48px;
}

.footer-logo {
  height: 44px;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 320px;
}

.footer h4 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 20px;
}

.footer ul {
  list-style: none;
}

.footer ul li {
  margin-bottom: 10px;
}

.footer ul a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.3s ease;
  padding: 4px 0;
  display: inline-block;
}

.footer ul a:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

/* REFERENCES PAGE */
.references-hero {
  padding: 160px 0 80px;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-light) 100%);
  text-align: center;
  color: var(--white);
}

.references-hero h1 {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--white);
}

.references-hero-sub {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

.references-section {
  padding: 80px 0 120px;
  background: var(--off-white);
}

.references-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.reference-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 28px 24px;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.reference-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.reference-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--off-white);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.reference-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--gold);
}

.reference-info {
  flex: 1;
  min-width: 0;
}

.reference-info h3 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 2px;
}

.reference-role {
  font-size: 0.85rem;
  color: var(--gray-600);
  margin-bottom: 0;
}

.reference-company {
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 500;
}

.btn-outline-sm {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--navy);
  border: 1px solid var(--gray-300);
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.btn-outline-sm:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 168, 76, 0.05);
}

.btn-outline-sm svg {
  flex-shrink: 0;
}

/* RESUME PAGE */
.resume-hero {
  padding: 160px 0 80px;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-light) 100%);
  text-align: center;
  color: var(--white);
}

.resume-hero h1 {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--white);
}

.resume-hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 32px;
  line-height: 1.7;
}

.resume-download-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.resume-body {
  padding: 80px 0 60px;
  background: var(--off-white);
}

.resume-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 60px;
  align-items: start;
}

.resume-sidebar {
  position: sticky;
  top: 100px;
}

.resume-sidebar-section {
  margin-bottom: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--gray-200);
}

.resume-sidebar-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.resume-sidebar-section h3 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 12px;
}

.resume-sidebar-section p {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 10px;
}

.resume-sidebar-section p:last-child {
  margin-bottom: 0;
}

.resume-stat {
  display: flex;
  flex-direction: column;
}

.resume-stat-number {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}

.resume-stat-label {
  font-size: 0.85rem;
  color: var(--gray-500);
  margin-top: 4px;
}

.resume-link {
  display: block;
  font-size: 0.85rem;
  color: var(--blue-accent);
  text-decoration: none;
  margin-bottom: 6px;
  transition: color 0.3s ease;
  padding: 4px 0;
}

.resume-link:hover {
  color: var(--gold);
}

.resume-list {
  list-style: none;
  padding: 0;
}

.resume-list li {
  font-size: 0.85rem;
  color: var(--gray-600);
  line-height: 1.5;
  padding-left: 16px;
  position: relative;
  margin-bottom: 8px;
}

.resume-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.resume-main {
  min-width: 0;
}

.resume-section {
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--gray-200);
}

.resume-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.resume-section h2 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 20px;
}

.resume-section p {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 16px;
}

.resume-section p:last-child {
  margin-bottom: 0;
}

.resume-quote {
  background: var(--white);
  border-left: 4px solid var(--gold);
  border-radius: 0 8px 8px 0;
  padding: 24px 28px;
  margin: 28px 0;
}

.resume-quote blockquote p {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--gray-700);
  line-height: 1.7;
  margin-bottom: 0;
}

.resume-quote cite {
  display: block;
  margin-top: 12px;
  font-size: 0.85rem;
  font-style: normal;
  font-weight: 500;
  color: var(--gold);
}

.resume-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.resume-tag {
  display: inline-block;
  padding: 8px 16px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 8px;
}

.resume-project {
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--gray-100);
}

.resume-project:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.resume-project h3 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}

.resume-project p {
  font-size: 0.95rem;
  margin-bottom: 0;
}

.resume-bottom-download {
  text-align: center;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--gray-200);
}

.resume-bottom-download .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* ANIMATIONS */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE - Tablet */
@media (max-width: 1024px) {
  .guide-grid,
  .authority-grid {
    gap: 48px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .resume-layout {
    grid-template-columns: 260px 1fr;
    gap: 40px;
  }
}

/* RESPONSIVE - Mobile */
@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    max-width: 85vw;
    height: 100vh;
    height: 100dvh;
    background: var(--navy);
    flex-direction: column;
    padding: 80px 36px 36px;
    gap: 8px;
    transition: right 0.4s ease;
    box-shadow: -4px 0 20px rgba(0,0,0,0.3);
    overflow-y: auto;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-close-wrap {
    display: block;
  }

  .nav-close {
    display: block;
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.8rem;
    cursor: pointer;
    padding: 8px;
    line-height: 1;
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-tap-highlight-color: transparent;
  }

  .nav-links a {
    font-size: 1.05rem;
    color: var(--white);
    padding: 12px 0;
    display: block;
  }

  .nav-cta {
    margin-top: 8px;
    text-align: center;
    display: block !important;
    padding: 14px 24px !important;
  }

  .hero {
    min-height: 100svh;
    min-height: 600px;
  }

  .hero h1 {
    font-size: 1.75rem;
    line-height: 1.2;
    margin-bottom: 20px;
  }

  .hero-sub {
    font-size: 0.95rem;
    margin-bottom: 32px;
    line-height: 1.6;
  }

  .hero-content {
    padding: 0 20px;
  }

  .hero-scroll-indicator {
    bottom: 24px;
  }

  .value-props {
    margin-top: -40px;
  }

  .value-grid {
    grid-template-columns: 1fr;
  }

  .value-card {
    border-radius: 0 !important;
    padding: 36px 28px;
  }

  .value-card:first-child {
    border-radius: 12px 12px 0 0 !important;
  }

  .value-card:last-child {
    border-radius: 0 0 12px 12px !important;
  }

  .guide-section {
    padding: 80px 0;
  }

  .guide-grid,
  .authority-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .guide-image {
    order: -1;
  }

  .guide-image-frame,
  .authority-image-frame {
    padding-bottom: 75%;
  }

  .guide-image-frame::after {
    display: none;
  }

  .authority-image-frame::before {
    display: none;
  }

  .guide-content h2,
  .authority-content h2 {
    font-size: 1.8rem;
  }

  .guide-content p {
    font-size: 1rem;
  }

  .testimonial-section {
    padding: 64px 0;
  }

  .testimonial-card blockquote p {
    font-size: 1.1rem;
    line-height: 1.6;
  }

  .risk-section {
    padding: 80px 0;
  }

  .risk-section h2 {
    font-size: 1.6rem;
    margin-bottom: 40px;
  }

  .risk-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 40px;
  }

  .risk-item {
    padding: 20px;
  }

  .risk-cta-text {
    font-size: 1rem;
  }

  .authority-section {
    padding: 80px 0;
  }

  .authority-badges {
    justify-content: flex-start;
    gap: 24px;
  }

  .plan-section {
    padding: 80px 0;
  }

  .plan-section h2 {
    font-size: 1.8rem;
    margin-bottom: 48px;
  }

  .plan-grid {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .plan-connector {
    width: 2px;
    height: 40px;
    margin: 0;
  }

  .plan-step {
    padding: 0;
    max-width: 400px;
  }

  .services-section {
    padding: 80px 0;
  }

  .services-section h2 {
    font-size: 1.8rem;
    margin-bottom: 40px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .cta-section {
    padding: 80px 0;
  }

  .cta-content h2 {
    font-size: 1.8rem;
  }

  .cta-content p {
    font-size: 1rem;
  }

  .footer {
    padding: 48px 0 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 32px;
  }

  .footer-brand p {
    max-width: 100%;
  }

  .footer ul a {
    padding: 6px 0;
  }

  .references-hero {
    padding: 140px 0 60px;
  }

  .references-hero h1 {
    font-size: 2rem;
  }

  .references-section {
    padding: 48px 0 80px;
  }

  .references-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .reference-card {
    flex-wrap: wrap;
    gap: 16px;
    padding: 20px;
  }

  .reference-info {
    flex: 1 1 calc(100% - 76px);
  }

  .btn-outline-sm {
    width: 100%;
    justify-content: center;
    padding: 12px 18px;
  }

  .resume-hero {
    padding: 140px 0 60px;
  }

  .resume-hero h1 {
    font-size: 2.2rem;
  }

  .resume-hero-subtitle {
    font-size: 1rem;
  }

  .resume-body {
    padding: 48px 0 40px;
  }

  .resume-layout {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .resume-sidebar {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 32px;
    padding-bottom: 40px;
    margin-bottom: 40px;
    border-bottom: 2px solid var(--gray-200);
  }

  .resume-sidebar-section {
    margin-bottom: 24px;
    padding-bottom: 24px;
  }

  .resume-section h2 {
    font-size: 1.5rem;
  }

  .resume-quote {
    padding: 20px;
  }

  .resume-bottom-download {
    margin-top: 40px;
    padding-top: 32px;
  }
}

/* RESPONSIVE - Small phones */
@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.5rem;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-ctas .btn {
    width: 100%;
  }

  .btn-lg {
    padding: 16px 28px;
    font-size: 1rem;
  }

  .risk-cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .risk-cta-buttons .btn {
    width: 100%;
  }

  .authority-badges {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }

  .badge {
    text-align: left;
  }

  .resume-sidebar {
    grid-template-columns: 1fr;
  }

  .resume-tags {
    gap: 8px;
  }

  .resume-tag {
    font-size: 0.8rem;
    padding: 6px 12px;
  }
}

/* RESPONSIVE - Landscape phones */
@media (max-height: 500px) and (orientation: landscape) {
  .hero {
    min-height: 400px;
    height: auto;
    padding: 100px 0 60px;
  }

  .hero-scroll-indicator {
    display: none;
  }
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .fade-in {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero-scroll-indicator {
    animation: none;
  }

  .btn,
  .value-card,
  .reference-card,
  .risk-item,
  .service-item,
  .nav-links,
  .navbar {
    transition: none;
  }
}
