/* ===================================
   IRONGATE Risk Partners - Stylesheet
   =================================== */

:root {
  /* Colors */
  --primary: #8B7355;
  --primary-dark: #6B5A45;
  --primary-light: #A89070;
  --accent: #4A7C8C;
  --accent-dark: #3A6270;
  --accent-light: #5A9CAC;
  --text: #2C2C2C;
  --text-light: #5A5A5A;
  --bg: #FAFAF8;
  --bg-alt: #F2F0EC;
  --white: #FFFFFF;
  --border: #E5E2DC;
  --success: #4A7C59;
  --warning: #C9A962;
  --error: #A65D57;
}

/* ===================================
   Reset & Base
   =================================== */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Source Sans 3', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  line-height: 1.2;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--accent-dark);
}

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

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

/* ===================================
   Navigation
   =================================== */

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(250, 250, 248, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  transition: all 0.3s ease;
}

nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo svg {
  height: 42px;
  width: auto;
}

.logo-light svg text {
  fill: #ffffff;
}

.logo-light svg rect {
  fill: #ffffff;
}

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

.nav-links a {
  color: var(--text);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: color 0.2s ease;
}

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

.nav-cta {
  background: var(--primary);
  color: var(--white) !important;
  padding: 10px 24px;
  border-radius: 4px;
  transition: background 0.2s ease !important;
}

.nav-cta:hover {
  background: var(--primary-dark) !important;
  color: var(--white) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

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

/* ===================================
   Buttons
   =================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.2s ease;
  cursor: pointer;
  font-family: inherit;
  box-sizing: border-box;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  border: 2px solid var(--primary);
}

.btn-primary:hover {
  background: var(--primary-dark);
  color: var(--white);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(139, 115, 85, 0.25);
}

.btn-secondary {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}

.btn-secondary:hover {
  background: var(--accent);
  color: var(--white);
}

.btn-white {
  background: var(--white);
  color: var(--accent-dark);
  border: 2px solid var(--white);
}

.btn-white:hover {
  background: var(--bg);
  color: var(--accent-dark);
  border-color: var(--bg);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-outline-white:hover {
  background: var(--white);
  color: var(--primary-dark);
}

.btn-small {
  padding: 10px 20px;
  font-size: 14px;
}

.btn-large {
  padding: 20px 40px;
  font-size: 17px;
}

/* ===================================
   Section Styles
   =================================== */

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 80px;
}

.section-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(36px, 4vw, 48px);
  color: var(--primary-dark);
  margin-bottom: 20px;
}

.section-description {
  font-size: 18px;
  color: var(--text-light);
}

/* ===================================
   Hero Section
   =================================== */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 72px;
  background: linear-gradient(165deg, var(--bg) 0%, var(--bg-alt) 50%, #E8E4DC 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(74, 124, 140, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

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

.hero-content {
  animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-tagline {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(42px, 5vw, 64px);
  color: var(--primary-dark);
  margin-bottom: 24px;
}

.hero h1 em {
  font-style: normal;
  color: var(--accent);
}

.hero-description {
  font-size: 19px;
  color: var(--text-light);
  margin-bottom: 40px;
  max-width: 520px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-graphic {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1;
  background: linear-gradient(145deg, rgba(74, 124, 140, 0.12) 0%, rgba(242, 240, 236, 0.95) 40%, rgba(74, 124, 140, 0.08) 100%);
  border-radius: 12px;
  position: relative;
  box-shadow: 
    0 20px 60px rgba(139, 115, 85, 0.12),
    0 8px 24px rgba(74, 124, 140, 0.1),
    inset 0 0 60px rgba(74, 124, 140, 0.06);
  border: 1px solid rgba(74, 124, 140, 0.18);
}

/* Remove old decorative pseudo-elements */
.hero-graphic::before,
.hero-graphic::after {
  display: none;
}

.hero-graphic-inner {
  display: none;
}

/* Page Hero (for inner pages) */
.page-hero {
  padding: 140px 0 80px;
  background: linear-gradient(165deg, var(--bg) 0%, var(--bg-alt) 100%);
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(42px, 5vw, 56px);
  color: var(--primary-dark);
  margin-bottom: 20px;
}

.page-hero p {
  font-size: 20px;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

/* ===================================
   Credentials Bar
   =================================== */

.credentials {
  background: var(--primary-dark);
  padding: 32px 0;
}

.credentials .container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

.credential-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  font-weight: 500;
}

.credential-item svg {
  width: 24px;
  height: 24px;
  fill: var(--accent-light);
}

/* ===================================
   Process Section
   =================================== */

.process {
  padding: 120px 0;
  background: var(--white);
}

.process-steps {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.process-step {
  flex: 1;
  text-align: center;
  padding: 0 20px;
}

.process-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.3;
  margin-bottom: 16px;
}

.process-step h3 {
  font-size: 22px;
  color: var(--primary-dark);
  margin-bottom: 12px;
}

.process-step p {
  font-size: 15px;
  color: var(--text-light);
}

.process-connector {
  width: 60px;
  height: 2px;
  background: var(--border);
  margin-top: 40px;
  flex-shrink: 0;
}

/* ===================================
   Services Section
   =================================== */

.services {
  padding: 120px 0;
  background: var(--bg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 40px 32px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-color: transparent;
}

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

.service-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 28px;
}

.service-card h3 {
  font-size: 24px;
  color: var(--primary-dark);
  margin-bottom: 12px;
}

.service-card > p {
  color: var(--text-light);
  margin-bottom: 20px;
}

.service-price {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  padding-top: 16px;
  border-top: 1px solid var(--border);
  margin-bottom: 16px;
}

.service-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
}

.service-link:hover {
  color: var(--primary-dark);
}

.services-cta {
  text-align: center;
  margin-top: 60px;
}

/* Service Detail (for services page) */
.service-detail {
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}

.service-detail:last-child {
  border-bottom: none;
}

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

.service-detail-content h2 {
  font-size: 36px;
  color: var(--primary-dark);
  margin-bottom: 16px;
}

.service-detail-content .price {
  font-size: 20px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 24px;
}

.service-detail-content > p {
  color: var(--text-light);
  margin-bottom: 24px;
}

.service-includes h4 {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
}

.service-includes ul {
  list-style: none;
  margin-bottom: 24px;
}

.service-includes li {
  padding: 8px 0;
  padding-left: 28px;
  position: relative;
  color: var(--text-light);
}

.service-includes li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: bold;
}

.service-detail-visual {
  background: var(--bg-alt);
  border-radius: 12px;
  padding: 48px;
  text-align: center;
}

.service-detail-visual .icon {
  font-size: 80px;
  margin-bottom: 24px;
}

.service-detail-visual h3 {
  font-size: 24px;
  color: var(--primary-dark);
  margin-bottom: 8px;
}

.service-detail-visual p {
  color: var(--text-light);
}

/* ===================================
   Frameworks Section
   =================================== */

.frameworks {
  padding: 120px 0;
  background: var(--white);
}

.frameworks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.framework-card {
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.framework-card:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 24px rgba(74, 124, 140, 0.1);
}

.framework-icon {
  width: 48px;
  height: 48px;
  color: var(--accent);
  margin-bottom: 20px;
}

.framework-icon svg {
  width: 100%;
  height: 100%;
}

.framework-card h3 {
  font-size: 22px;
  color: var(--primary-dark);
  margin-bottom: 12px;
}

.framework-card p {
  font-size: 15px;
  color: var(--text-light);
}

/* ===================================
   Free Tool Section
   =================================== */

.free-tool {
  padding: 120px 0;
  background: linear-gradient(135deg, var(--accent-dark) 0%, var(--accent) 100%);
  position: relative;
  overflow: hidden;
}

.free-tool::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.free-tool .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
}

.free-tool-content {
  color: var(--white);
}

.free-tool-content .section-label {
  color: rgba(255, 255, 255, 0.7);
}

.free-tool-content h2 {
  font-size: clamp(36px, 4vw, 48px);
  color: var(--white);
  margin-bottom: 20px;
}

.free-tool-content > p {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 32px;
}

.tool-features {
  list-style: none;
  margin-bottom: 40px;
}

.tool-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 16px;
}

.tool-features li svg {
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  padding: 4px;
  width: 24px;
  height: 24px;
  min-width: 24px;
  box-sizing: content-box;
}

.free-tool-visual {
  background: var(--white);
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.2);
}

.tool-preview {
  background: var(--bg);
  border-radius: 8px;
  padding: 24px;
  font-family: 'Source Sans 3', monospace;
  font-size: 14px;
}

.tool-preview-header {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

.tool-preview-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--border);
}

.tool-preview-dot:nth-child(1) { background: #FF6B6B; }
.tool-preview-dot:nth-child(2) { background: #FFD93D; }
.tool-preview-dot:nth-child(3) { background: #6BCB77; }

.tool-preview-content {
  color: var(--text-light);
  line-height: 2;
}

.tool-preview-content span {
  color: var(--accent);
  font-weight: 600;
}

/* ===================================
   Testimonials Section
   =================================== */

.testimonials {
  padding: 120px 0;
  background: var(--bg);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.testimonial-card {
  background: var(--white);
  border-radius: 8px;
  padding: 40px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.testimonial-content {
  margin-bottom: 24px;
}

.testimonial-content p {
  font-size: 17px;
  color: var(--text);
  font-style: italic;
  line-height: 1.8;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 600;
  font-size: 16px;
}

.testimonial-info strong {
  display: block;
  color: var(--text);
  font-weight: 600;
}

.testimonial-info span {
  font-size: 14px;
  color: var(--text-light);
}

/* ===================================
   About Preview Section
   =================================== */

.about-preview {
  padding: 120px 0;
  background: var(--white);
}

.about-preview-content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.about-preview-image {
  position: relative;
}

.about-image-frame {
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  border-radius: 8px;
  padding: 40px;
  position: relative;
}

.about-image-frame::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  right: -20px;
  bottom: -20px;
  border: 2px solid var(--accent);
  border-radius: 8px;
  z-index: -1;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  color: var(--white);
}

.about-stat {
  text-align: center;
}

.about-stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 8px;
}

.about-stat-label {
  font-size: 14px;
  opacity: 0.9;
}

.about-preview-text h2 {
  font-size: clamp(36px, 4vw, 48px);
  color: var(--primary-dark);
  margin-bottom: 24px;
}

.about-preview-text p {
  color: var(--text-light);
  margin-bottom: 20px;
  font-size: 17px;
}

.about-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.credential-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
}

.credential-badge svg {
  width: 18px;
  height: 18px;
  fill: var(--accent);
}

/* ===================================
   FAQ Section
   =================================== */

.faq {
  padding: 120px 0;
  background: var(--bg);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(480px, 1fr));
  gap: 40px;
}

.faq-item {
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}

.faq-item h3 {
  font-size: 20px;
  color: var(--primary-dark);
  margin-bottom: 12px;
}

.faq-item p {
  color: var(--text-light);
  font-size: 16px;
}

/* ===================================
   Newsletter Section
   =================================== */

.newsletter {
  padding: 80px 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.newsletter-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.newsletter-content h2 {
  font-size: 32px;
  color: var(--primary-dark);
  margin-bottom: 16px;
}

.newsletter-content > p {
  color: var(--text-light);
  margin-bottom: 32px;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.newsletter-form input[type="email"] {
  flex: 1;
  padding: 16px 20px;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 16px;
  font-family: inherit;
  transition: border-color 0.2s ease;
}

.newsletter-form input[type="email"]:focus {
  outline: none;
  border-color: var(--accent);
}

.newsletter-note {
  font-size: 14px;
  color: var(--text-light);
}

/* ===================================
   CTA Section
   =================================== */

.cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  text-align: center;
}

.cta-content h2 {
  font-size: clamp(36px, 4vw, 48px);
  color: var(--white);
  margin-bottom: 16px;
}

.cta-content p {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
}

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

/* ===================================
   Contact Section
   =================================== */

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

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.contact-info h2 {
  font-size: 36px;
  color: var(--primary-dark);
  margin-bottom: 24px;
}

.contact-info > p {
  color: var(--text-light);
  margin-bottom: 40px;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-method-icon {
  width: 48px;
  height: 48px;
  background: var(--bg);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.contact-method h3 {
  font-size: 18px;
  color: var(--text);
  margin-bottom: 4px;
}

.contact-method p,
.contact-method a {
  font-size: 16px;
  color: var(--text-light);
}

.contact-method a:hover {
  color: var(--accent);
}

/* Contact Form */
.contact-form-wrapper {
  background: var(--bg);
  border-radius: 12px;
  padding: 48px;
}

.contact-form-wrapper h3 {
  font-size: 24px;
  color: var(--primary-dark);
  margin-bottom: 32px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 16px;
  font-family: inherit;
  transition: border-color 0.2s ease;
  background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

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

/* Calendly Embed */
.calendly-embed {
  margin-top: 60px;
  padding: 60px 0;
  background: var(--bg);
  border-radius: 12px;
}

.calendly-embed h3 {
  font-size: 28px;
  color: var(--primary-dark);
  text-align: center;
  margin-bottom: 16px;
}

.calendly-embed > p {
  text-align: center;
  color: var(--text-light);
  margin-bottom: 32px;
}

.calendly-placeholder {
  background: var(--white);
  border: 2px dashed var(--border);
  border-radius: 8px;
  padding: 80px;
  text-align: center;
  margin: 0 48px;
}

.calendly-placeholder p {
  color: var(--text-light);
  margin-bottom: 16px;
}

.calendly-placeholder code {
  display: block;
  background: var(--bg-alt);
  padding: 16px;
  border-radius: 4px;
  font-size: 14px;
  color: var(--text);
  margin-top: 16px;
  word-break: break-all;
}

/* ===================================
   Resources / Blog Section
   =================================== */

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

.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 32px;
}

.resource-card {
  background: var(--bg);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.resource-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.resource-image {
  height: 160px;
  background: linear-gradient(135deg, var(--bg) 0%, var(--bg-alt) 100%);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}

.resource-image svg {
  opacity: 0.9;
}

.resource-content {
  padding: 32px;
}

.resource-category {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.resource-content h3 {
  font-size: 22px;
  color: var(--primary-dark);
  margin-bottom: 12px;
}

.resource-content h3 a {
  color: inherit;
  text-decoration: none;
}

.resource-content h3 a:hover {
  color: var(--accent);
}

.resource-content p {
  color: var(--text-light);
  font-size: 15px;
  margin-bottom: 16px;
}

.resource-meta {
  font-size: 14px;
  color: var(--text-light);
}

/* Featured Resource */
.featured-resource {
  background: var(--bg);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 60px;
}

.featured-resource .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.featured-resource-image {
  background: linear-gradient(145deg, var(--bg) 0%, var(--bg-alt) 50%, #E8E4DC 100%);
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--border);
}

.featured-resource-image svg {
  opacity: 0.9;
}

.featured-resource-content {
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-resource-content .resource-category {
  margin-bottom: 16px;
}

.featured-resource-content h2 {
  font-size: 32px;
  color: var(--primary-dark);
  margin-bottom: 16px;
}

.featured-resource-content p {
  color: var(--text-light);
  margin-bottom: 24px;
}

/* ===================================
   About Page Specific
   =================================== */

.about-full {
  padding: 80px 0;
  background: var(--white);
}

.about-full .container {
  max-width: 900px;
}

.about-intro {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 60px;
  margin-bottom: 60px;
  align-items: start;
}

.about-photo {
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  border-radius: 8px;
  padding: 40px;
  text-align: center;
  color: var(--white);
}

.about-photo-placeholder {
  width: 150px;
  height: 150px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
}

.about-photo h3 {
  font-size: 24px;
  margin-bottom: 8px;
}

.about-photo p {
  opacity: 0.9;
  font-size: 15px;
}

.about-bio h2 {
  font-size: 32px;
  color: var(--primary-dark);
  margin-bottom: 24px;
}

.about-bio p {
  color: var(--text-light);
  margin-bottom: 20px;
  font-size: 17px;
}

.about-experience {
  padding: 60px 0;
  border-top: 1px solid var(--border);
}

.about-experience h2 {
  font-size: 28px;
  color: var(--primary-dark);
  margin-bottom: 40px;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
}

.experience-item {
  text-align: center;
  padding: 32px;
  background: var(--bg);
  border-radius: 8px;
}

.experience-item .number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 12px;
}

.experience-item h3 {
  font-size: 18px;
  color: var(--primary-dark);
  margin-bottom: 8px;
}

.experience-item p {
  font-size: 14px;
  color: var(--text-light);
}

/* ===================================
   Footer
   =================================== */

footer {
  background: var(--primary-dark);
  color: var(--white);
  padding: 60px 0 32px;
}

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

.footer-brand .logo {
  margin-bottom: 16px;
  display: inline-block;
}

.footer-brand .logo svg {
  height: 60px;
}

.footer-brand .logo svg text {
  fill: #ffffff;
}

.footer-brand .logo svg rect {
  fill: #ffffff;
}

.footer-brand p {
  opacity: 0.8;
  font-size: 15px;
  max-width: 300px;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all 0.2s ease;
}

.footer-social a:hover {
  background: rgba(255, 255, 255, 0.2);
}

.footer-social svg {
  width: 20px;
  height: 20px;
}

.footer-heading {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  opacity: 0.7;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--white);
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.2s ease;
  font-size: 15px;
}

.footer-links a:hover {
  opacity: 1;
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  opacity: 0.7;
}

/* ===================================
   Responsive Design
   =================================== */

@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .free-tool .container,
  .about-preview-content,
  .contact-grid,
  .service-detail .container,
  .featured-resource .container {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .hero-description {
    font-size: 17px;
  }

  .hero-graphic {
    max-width: 350px;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
    margin-bottom: 16px;
  }

  .about-intro {
    grid-template-columns: 1fr;
  }

  .about-photo {
    max-width: 300px;
    margin: 0 auto;
  }

  .credentials .container {
    gap: 40px;
  }

  .credential-item {
    font-size: 14px;
  }

  .process-steps {
    gap: 16px;
  }

  .process-step {
    padding: 0 12px;
  }

  .process-number {
    font-size: 40px;
  }

  .process-step h3 {
    font-size: 18px;
  }
}

/* Intermediate breakpoint for smooth transitions */
@media (max-width: 900px) {
  .hero .container {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .hero-visual {
    order: -1;
  }

  .hero-graphic {
    max-width: 320px;
    margin: 0 auto;
  }

  .hero-description {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-cta {
    justify-content: center;
  }

  .credentials .container {
    gap: 24px 48px;
  }

  .process-steps {
    flex-wrap: wrap;
    justify-content: center;
  }

  .process-step {
    flex: 1 1 45%;
    min-width: 200px;
    max-width: 280px;
  }

  .process-connector {
    display: none;
  }

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

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

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

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid var(--border);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-toggle {
    display: flex;
  }

  .hero {
    padding-top: 100px;
    min-height: auto;
    padding-bottom: 80px;
  }

  .hero h1 {
    font-size: clamp(32px, 8vw, 42px);
  }

  .services-grid,
  .frameworks-grid,
  .testimonials-grid,
  .resources-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .process-steps {
    flex-direction: column;
    gap: 32px;
  }

  .process-step {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .process-connector {
    display: none;
  }

  .credentials .container {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .credential-item {
    justify-content: center;
  }

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

  .newsletter-form {
    flex-direction: column;
  }

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

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

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

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

  .contact-form-wrapper {
    padding: 32px 24px;
  }

  .calendly-placeholder {
    margin: 0 24px;
    padding: 40px 24px;
  }

  .section-header {
    margin-bottom: 48px;
  }

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

  .experience-item {
    padding: 24px 16px;
  }

  .experience-item .number {
    font-size: 36px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .btn {
    padding: 14px 24px;
    width: 100%;
    justify-content: center;
  }

  .hero-cta {
    flex-direction: column;
  }

  .hero h1 {
    font-size: 28px;
  }

  .hero-description {
    font-size: 16px;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .section-title {
    font-size: 28px;
  }

  .section-description {
    font-size: 16px;
  }

  .service-card,
  .framework-card,
  .testimonial-card {
    padding: 24px;
  }

  .service-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
  }

  .service-card h3 {
    font-size: 20px;
  }

  .credential-item {
    font-size: 13px;
    gap: 8px;
  }

  .credential-item strong {
    font-size: 15px;
  }

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

  .experience-item .number {
    font-size: 32px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .footer-nav {
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }

  .process-number {
    font-size: 36px;
  }

  .process-step h3 {
    font-size: 18px;
  }
}
