/* ============================================
   JEWELS RECRUITMENT - Specialist UK Recruitment
   ============================================ */

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

:root {
  --primary: #1a3c40;
  --primary-light: #2d6a6a;
  --primary-dark: #0f2628;
  --accent: #c45e3e;
  --accent-hover: #a84d32;
  --accent-light: rgba(196, 94, 62, 0.1);
  --cream: #f9f6f1;
  --warm-white: #fdfcfa;
  --text: #1a1a1a;
  --text-muted: #5a5a5a;
  --text-on-dark: #f0ece6;
  --text-on-dark-muted: rgba(240, 236, 230, 0.7);
  --white: #ffffff;
  --border: #e5e0d8;
  --shadow-sm: 0 2px 8px rgba(26, 60, 64, 0.06);
  --shadow-md: 0 4px 20px rgba(26, 60, 64, 0.1);
  --shadow-lg: 0 8px 40px rgba(26, 60, 64, 0.14);
  --radius: 6px;
  --radius-lg: 12px;
  --transition: 0.3s ease;
  --max-width: 1180px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-weight: 700;
  line-height: 1.2;
}

/* --- Header / Navigation --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 24px;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
  background: transparent;
}

.header.scrolled {
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  transition: height var(--transition);
}

.header.scrolled .header-inner { height: 68px; }

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  transition: color var(--transition);
}

.header.scrolled .logo { color: var(--primary); }

.logo-icon {
  width: 38px;
  height: 38px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--white);
  font-style: italic;
}

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

.nav { display: flex; align-items: center; gap: 32px; }

.nav a {
  font-size: 0.92rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  transition: color var(--transition);
  position: relative;
  letter-spacing: 0.02em;
}

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

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

.header.scrolled .nav a { color: var(--text); }
.nav a:hover, .header.scrolled .nav a:hover { color: var(--accent); }

.nav-cta {
  background: var(--accent) !important;
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 600 !important;
  font-size: 0.88rem !important;
  letter-spacing: 0.02em;
  transition: background var(--transition), transform var(--transition) !important;
}

.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--accent-hover) !important; transform: translateY(-1px); }

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown > a { cursor: pointer; }

.nav-dropdown > a .chevron-down {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-left: 3px;
  vertical-align: middle;
  transition: transform var(--transition);
}

.nav-dropdown:hover > a .chevron-down { transform: rotate(180deg); }

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 12px 0;
  min-width: 240px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  z-index: 100;
  border: 1px solid var(--border);
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 20px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text) !important;
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}

.dropdown-menu a::after { display: none !important; }

.dropdown-menu a:hover {
  background: var(--cream);
  color: var(--accent) !important;
}

.dropdown-menu a span {
  font-size: 1.1rem;
  width: 22px;
  text-align: center;
  flex-shrink: 0;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.header.scrolled .hamburger span { background: var(--primary); }

.hamburger.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100vh;
  background: var(--primary);
  padding: 100px 32px 32px;
  transition: right var(--transition);
  z-index: 999;
  flex-direction: column;
  gap: 0;
}

.mobile-nav.open { right: 0; }

.mobile-nav a {
  color: var(--text-on-dark);
  font-size: 1.05rem;
  font-weight: 500;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: block;
}

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

.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 998;
  opacity: 0;
  transition: opacity var(--transition);
}

.mobile-overlay.open { opacity: 1; }

/* --- Hero --- */
.hero {
  min-height: 100vh;
  background: linear-gradient(160deg, var(--primary-dark) 0%, var(--primary) 40%, var(--primary-light) 100%);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

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

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--white), transparent);
  pointer-events: none;
  z-index: 1;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding-top: 80px;
  position: relative;
  z-index: 2;
}

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

.hero-badge {
  display: inline-block;
  background: rgba(196, 94, 62, 0.15);
  color: var(--accent);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 24px;
  border: 1px solid rgba(196, 94, 62, 0.25);
}

.hero h1 {
  font-size: 3.4rem;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

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

.hero-text {
  font-size: 1.1rem;
  color: var(--text-on-dark-muted);
  margin-bottom: 36px;
  max-width: 520px;
  line-height: 1.8;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
  font-family: inherit;
}

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

.btn-primary:hover { background: var(--accent-hover); transform: translateY(-2px); box-shadow: 0 4px 16px rgba(196, 94, 62, 0.3); }

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

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

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

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

/* Hero visual side */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  width: 100%;
  max-width: 460px;
}

.hero-card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  transition: transform var(--transition);
}

.hero-card:nth-child(2) { transform: translateY(24px); }
.hero-card:nth-child(3) { transform: translateY(-24px); }

.hero-card:hover { transform: translateY(-4px); }
.hero-card:nth-child(2):hover { transform: translateY(20px); }
.hero-card:nth-child(3):hover { transform: translateY(-28px); }

.hero-card-icon {
  width: 44px;
  height: 44px;
  background: var(--accent);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  font-size: 1.2rem;
  color: var(--white);
}

.hero-card h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}

.hero-card p {
  font-size: 0.8rem;
  color: var(--text-on-dark-muted);
  line-height: 1.5;
}

/* --- Stats Section --- */
.stats {
  padding: 0;
  margin-top: -50px;
  position: relative;
  z-index: 10;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.stat-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition);
}

.stat-card:hover { transform: translateY(-4px); }

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-number .accent { color: var(--accent); }

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* --- Section Styles --- */
.section {
  padding: 100px 0;
  position: relative;
}

.section-cream { background: var(--cream); }
.section-white { background: var(--white); }
.section-dark { background: var(--primary); color: var(--text-on-dark); }

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

.section-label {
  display: inline-block;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-header h2 {
  font-size: 2.4rem;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.section-dark .section-header h2 { color: var(--white); }

.section-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.section-dark .section-header p { color: var(--text-on-dark-muted); }

/* Angled section dividers */
.angle-top {
  clip-path: polygon(0 40px, 100% 0, 100% 100%, 0 100%);
  padding-top: 140px;
}

.angle-bottom {
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 40px), 0 100%);
  padding-bottom: 140px;
}

/* --- Why Choose Us (Alternating Panels) --- */
.panel-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.panel-row:last-child { margin-bottom: 0; }
.panel-row.reverse .panel-content { order: 2; }
.panel-row.reverse .panel-visual { order: 1; }

.panel-visual {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
  position: relative;
  overflow: hidden;
}

.panel-visual-icon {
  font-size: 4.5rem;
  opacity: 0.9;
}

.panel-visual::after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(196, 94, 62, 0.06);
  bottom: -40px;
  right: -40px;
}

.panel-content .section-label { margin-bottom: 10px; }

.panel-content h3 {
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.panel-content p {
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.8;
}

.check-list { display: flex; flex-direction: column; gap: 10px; }

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text);
}

.check-list li svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--accent);
}

/* --- Industries Grid --- */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.industry-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1px solid var(--border);
  transition: all var(--transition);
  display: flex;
  align-items: flex-start;
  gap: 18px;
  text-decoration: none;
}

.industry-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.industry-icon {
  width: 52px;
  height: 52px;
  background: var(--accent-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.4rem;
  transition: background var(--transition);
}

.industry-card:hover .industry-icon { background: var(--accent); color: var(--white); }

.industry-info h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.industry-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.industry-arrow {
  margin-left: auto;
  align-self: center;
  color: var(--border);
  transition: color var(--transition), transform var(--transition);
}

.industry-card:hover .industry-arrow { color: var(--accent); transform: translateX(4px); }

/* --- Timeline (How It Works) --- */
.timeline {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(255,255,255,0.15);
}

.timeline-step {
  display: flex;
  gap: 28px;
  margin-bottom: 48px;
  position: relative;
}

.timeline-step:last-child { margin-bottom: 0; }

.timeline-marker {
  width: 58px;
  height: 58px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 6px rgba(196, 94, 62, 0.2);
}

.timeline-content {
  padding-top: 10px;
}

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

.timeline-content p {
  color: var(--text-on-dark-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* --- Testimonial --- */
.testimonial-wrapper {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.testimonial-quote {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 28px;
  position: relative;
}

.testimonial-quote::before {
  content: '\201C';
  font-size: 5rem;
  color: var(--accent);
  position: absolute;
  top: -30px;
  left: -10px;
  font-style: normal;
  line-height: 1;
  opacity: 0.3;
}

.testimonial-author { font-weight: 600; color: var(--primary); font-size: 1rem; }
.testimonial-role { color: var(--text-muted); font-size: 0.9rem; }

.testimonial-stars {
  color: var(--accent);
  font-size: 1.2rem;
  margin-bottom: 20px;
  letter-spacing: 4px;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: background var(--transition);
}

.testimonial-dot.active { background: var(--accent); }

/* --- CTA Banner --- */
.cta-banner {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(196, 94, 62, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner h2 {
  font-size: 2.4rem;
  color: var(--white);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.cta-banner p {
  color: var(--text-on-dark-muted);
  font-size: 1.05rem;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.cta-banner .btn { position: relative; z-index: 1; }

/* --- FAQ --- */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

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

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color var(--transition);
}

.faq-question:hover { color: var(--accent); }

.faq-chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform var(--transition);
  color: var(--accent);
}

.faq-item.active .faq-chevron { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer { max-height: 300px; }

.faq-answer p {
  padding-bottom: 22px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* --- Contact Section --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info h3 {
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.contact-info > p {
  color: var(--text-muted);
  margin-bottom: 32px;
  line-height: 1.7;
}

.contact-details { display: flex; flex-direction: column; gap: 20px; }

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-icon {
  width: 44px;
  height: 44px;
  background: var(--accent-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
}

.contact-detail h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.contact-detail p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.contact-form-wrapper {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 8px;
  min-height: 640px;
}

.contact-form-wrapper iframe {
  border-radius: var(--radius);
}

/* --- Footer --- */
.footer {
  background: var(--primary-dark);
  color: var(--text-on-dark);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 48px;
}

.footer-brand p {
  color: var(--text-on-dark-muted);
  font-size: 0.9rem;
  margin-top: 16px;
  line-height: 1.7;
  max-width: 300px;
}

.footer h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.footer-links { display: flex; flex-direction: column; gap: 10px; }

.footer-links a {
  color: var(--text-on-dark-muted);
  font-size: 0.9rem;
  transition: color var(--transition);
}

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

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.9rem;
  color: var(--text-on-dark-muted);
}

.footer-contact-item svg { flex-shrink: 0; margin-top: 3px; color: var(--accent); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

.footer-bottom a { color: rgba(255,255,255,0.5); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--accent); }

/* --- Page Hero (subpages) --- */
.page-hero {
  background: linear-gradient(160deg, var(--primary-dark) 0%, var(--primary) 40%, var(--primary-light) 100%);
  padding: 160px 0 80px;
  text-align: center;
  position: relative;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(to top, var(--white), transparent);
}

.breadcrumb {
  font-size: 0.85rem;
  color: var(--text-on-dark-muted);
  margin-bottom: 16px;
}

.breadcrumb a { color: var(--text-on-dark-muted); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { color: var(--accent); }

.page-hero h1 {
  font-size: 2.8rem;
  color: var(--white);
  margin-bottom: 16px;
}

.page-hero p {
  color: var(--text-on-dark-muted);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* --- About Page --- */
.about-intro {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-intro h2 { font-size: 2rem; margin-bottom: 16px; }
.about-intro p { color: var(--text-muted); margin-bottom: 16px; line-height: 1.8; }

.about-visual {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 48px;
  text-align: center;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.value-card {
  text-align: center;
  padding: 36px 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.value-card:hover { border-color: var(--accent); transform: translateY(-3px); box-shadow: var(--shadow-md); }

.value-icon {
  width: 60px;
  height: 60px;
  background: var(--accent-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.5rem;
}

.value-card h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.value-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* --- Industry Page --- */
.industry-intro {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: start;
}

.industry-sidebar {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: sticky;
  top: 100px;
}

.industry-sidebar h3 {
  font-size: 1.2rem;
  margin-bottom: 16px;
}

.industry-sidebar .check-list { margin-bottom: 24px; }

.other-industries {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.other-industry-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px 12px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  text-align: center;
  transition: all var(--transition);
  font-size: 0.85rem;
  font-weight: 600;
}

.other-industry-card:hover { border-color: var(--accent); color: var(--accent); }

.other-industry-card span { font-size: 1.4rem; }

/* --- Animations --- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* --- Responsive --- */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .hero h1 { font-size: 2.8rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .panel-row { grid-template-columns: 1fr; gap: 32px; }
  .panel-row.reverse .panel-content { order: 1; }
  .panel-row.reverse .panel-visual { order: 2; }
  .panel-visual { min-height: 240px; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; }
  .about-intro { grid-template-columns: 1fr; }
  .industry-intro { grid-template-columns: 1fr; }
  .industry-sidebar { position: static; }
  .other-industries { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: flex; }
  .hero { min-height: auto; padding: 140px 0 100px; }
  .hero h1 { font-size: 2.2rem; }
  .section { padding: 70px 0; }
  .section-header h2 { font-size: 1.9rem; }
  .angle-top { clip-path: polygon(0 20px, 100% 0, 100% 100%, 0 100%); padding-top: 110px; }
  .angle-bottom { clip-path: polygon(0 0, 100% 0, 100% calc(100% - 20px), 0 100%); padding-bottom: 110px; }
  .stats { margin-top: -30px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .stat-card { padding: 20px 16px; }
  .stat-number { font-size: 1.8rem; }
  .industries-grid { grid-template-columns: 1fr; }
  .timeline::before { left: 22px; }
  .timeline-marker { width: 46px; height: 46px; font-size: 1.1rem; }
  .testimonial-quote { font-size: 1.3rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .page-hero { padding: 130px 0 60px; }
  .page-hero h1 { font-size: 2.1rem; }
  .values-grid { grid-template-columns: 1fr; }
  .other-industries { grid-template-columns: repeat(2, 1fr); }
  .cta-banner h2 { font-size: 1.8rem; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.85rem; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; justify-content: center; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .section-header h2 { font-size: 1.6rem; }
  .panel-content h3 { font-size: 1.4rem; }
}
