/* ============================================================
   CSS VARIABLES — EDIT THESE TO CHANGE COLORS & FONTS
   ============================================================ */
:root {
  /* COLORS — change these hex values to restyle the whole site */
  --bg:          #FAFAF7;       /* main page background (warm white) */
  --bg2:         #F2F1EC;       /* alternate section background */
  --white:       #FFFFFF;       /* pure white for cards */
  --ink:         #1A1A18;       /* main text color */
  --ink2:        #4A4A46;       /* secondary text / descriptions */
  --ink3:        #8A8A84;       /* muted text / labels */
  --green:       #0D6E3F;       /* primary accent (dark green) */
  --green-light: #E8F5EE;       /* light green for backgrounds */
  --green-mid:   #1A9A5C;       /* medium green for hover states */
  --border:      #E2E2DA;       /* card and section borders */
  --border2:     #D0D0C8;       /* stronger border */
  --shadow:      rgba(0,0,0,0.07); /* card shadow */
  --shadow2:     rgba(0,0,0,0.13); /* hover shadow */

  /* TYPOGRAPHY */
  --font-head:   'Lora', Georgia, serif;       /* heading font */
  --font-body:   'Inter', Arial, sans-serif;   /* body text font */

  /* SPACING & SHAPE */
  --radius:      12px;    /* border radius for cards */
  --radius-lg:   20px;    /* larger radius */
  --max-width:   1160px;  /* max content width */
}

/* ============================================================
   RESET & BASE STYLES
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.25;
  color: var(--ink);
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ============================================================
   REUSABLE LAYOUT HELPERS
   ============================================================ */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
}
section { padding: 100px 0; }
.section-alt { background: var(--bg2); }

/* Section label (small text above heading) */
/* EDIT: To add a label above any heading, use <p class="label">your text</p> */
.label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  background: var(--green-light);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 18px;
}

/* ============================================================
   BUTTONS
   USAGE: <a href="#contact" class="btn-primary">Book Now</a>
   ============================================================ */
.btn-primary {
  display: inline-block;
  background: var(--green);
  color: #fff;
  padding: 14px 32px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.92rem;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.btn-primary:hover {
  background: var(--green-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(13,110,63,0.25);
}
.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--green);
  padding: 13px 30px;
  border-radius: 100px;
  border: 2px solid var(--green);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-outline:hover {
  background: var(--green);
  color: #fff;
  transform: translateY(-2px);
}
.btn-full { width: 100%; text-align: center; }

/* ============================================================
   NAVIGATION BAR
   EDIT: Change menu links in the <nav> HTML section below
   ============================================================ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(250,250,247,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 40px;
  transition: box-shadow 0.3s;
}
#navbar.scrolled { box-shadow: 0 2px 20px var(--shadow); }
.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
/* Logo — EDIT: Change "RK" to your initials or name */
.nav-logo {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--ink);
}
.nav-logo span { color: var(--green); }
/* Nav links */
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-size: 0.87rem;
  font-weight: 500;
  color: var(--ink2);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--green); }
.nav-links .nav-cta {
  background: var(--green);
  color: #fff;
  padding: 9px 22px;
  border-radius: 100px;
  font-weight: 600;
}
.nav-links .nav-cta:hover { background: var(--green-mid); color: #fff; }

/* Mobile hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--ink);
  display: block;
  transition: 0.3s;
}

/* Mobile menu overlay */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 200;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-head);
  font-size: 1.8rem;
  color: var(--ink);
  font-weight: 700;
}
.mobile-menu a:hover { color: var(--green); }
.mob-close {
  position: absolute;
  top: 24px; right: 28px;
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: var(--ink);
}

/* ============================================================
   MARQUEE / TICKER STRIP
   EDIT: Change the text inside .marquee-track spans
   ============================================================ */
.marquee-section {
  background: var(--green);
  padding: 14px 0;
  overflow: hidden;
  border-top: none;
}
.marquee-track {
  display: flex;
  gap: 0;
  animation: marquee 30s linear infinite;
  width: max-content;
}
.marquee-item {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  white-space: nowrap;
  padding: 0 28px;
}
.marquee-item::after {
  content: '✦';
  color: rgba(255,255,255,0.4);
  margin-left: 28px;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   HERO SECTION
   EDIT: Change headline, subtext, and button text in HTML
   ============================================================ */
#hero {
  padding: 140px 0 80px;
  background: var(--white);
  position: relative;
  overflow: hidden;
}
/* Subtle background pattern */
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(var(--border) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
  opacity: 0.6;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-text {}
/* EDIT: Change the green highlight text inside <em> tags */
.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.18;
  color: var(--ink);
  margin-bottom: 24px;
}
.hero-headline em {
  font-style: italic;
  color: var(--green);
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--ink2);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-sub strong { color: var(--ink); font-weight: 600; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }
/* Tool chips row below buttons */
.tool-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tool-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--ink2);
  padding: 6px 13px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 500;
}
.tool-chip .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}
/* Hero right side — stats card */
.hero-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.stat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 28px;
  box-shadow: 0 2px 12px var(--shadow);
  display: flex;
  align-items: center;
  gap: 20px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.stat-card:hover {
  box-shadow: 0 6px 24px var(--shadow2);
  transform: translateY(-2px);
}
.stat-icon {
  font-size: 2.2rem;
  line-height: 1;
  flex-shrink: 0;
}
.stat-text-num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
}
.stat-text-label {
  font-size: 0.8rem;
  color: var(--ink3);
  margin-top: 2px;
}

/* ============================================================
   PROBLEM → SOLUTION HOOK SECTION
   This section creates the "keep reading" hook
   EDIT: Change the problems and the solution text
   ============================================================ */
#hook {
  padding: 80px 0;
  background: var(--green);
}
.hook-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hook-problems h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  color: rgba(255,255,255,0.9);
  margin-bottom: 28px;
  font-style: italic;
}
.problem-list { display: flex; flex-direction: column; gap: 14px; }
.problem-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255,255,255,0.8);
  font-size: 0.97rem;
}
.problem-item::before {
  content: '✗';
  color: rgba(255,100,100,0.9);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}
.hook-solution {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.hook-solution h3 {
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 20px;
}
.solution-list { display: flex; flex-direction: column; gap: 12px; }
.solution-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255,255,255,0.9);
  font-size: 0.95rem;
}
.solution-item::before {
  content: '✓';
  color: #5EE89A;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ============================================================
   ABOUT SECTION
   EDIT: Change bio text, photo, skills in the HTML below
   ============================================================ */
#about { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 72px;
  align-items: center;
}
.about-photo-wrap { position: relative; }
.about-photo {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--bg2);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  overflow: hidden;
  position: relative;
}
/* EDIT: Replace the emoji with your actual photo:
   <img src="your-photo.jpg" alt="Rajesh Kumar" style="width:100%;height:100%;object-fit:cover;"> */
.about-badge {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: var(--green);
  color: #fff;
  padding: 18px 22px;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 4px 20px rgba(13,110,63,0.35);
}
.about-badge small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 400;
  margin-top: 3px;
  opacity: 0.85;
}
.about-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 20px;
}
.about-text h2 em { font-style: italic; color: var(--green); }
.about-text p { color: var(--ink2); margin-bottom: 16px; font-size: 0.97rem; }
/* Skills tags */
/* EDIT: Add or remove skill tags by copying/deleting <span class="skill-tag"> elements */
.skill-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.skill-tag {
  background: var(--green-light);
  color: var(--green);
  border: 1px solid rgba(13,110,63,0.2);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
}

/* ============================================================
   SERVICES SECTION
   EDIT: Change service cards in the HTML below
   To add a new service: copy one .service-card div and paste it
   ============================================================ */
#services { background: var(--bg2); }
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-header h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
  margin-bottom: 14px;
}
.section-header h2 em { font-style: italic; color: var(--green); }
.section-header p { color: var(--ink2); max-width: 520px; margin: 0 auto; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 26px;
  transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  box-shadow: 0 8px 32px var(--shadow2);
  transform: translateY(-4px);
  border-color: rgba(13,110,63,0.25);
}
.service-icon { font-size: 2.2rem; margin-bottom: 16px; }
.service-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--ink);
}
.service-card p { color: var(--ink2); font-size: 0.88rem; line-height: 1.7; margin-bottom: 16px; }
/* Tech tags inside service cards */
.tech-tags { display: flex; flex-wrap: wrap; gap: 5px; }
.tech-tag {
  background: var(--bg2);
  color: var(--ink3);
  border: 1px solid var(--border);
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 0.71rem;
}

/* ============================================================
   USE CASES SECTION
   EDIT: Add/remove industry cards
   ============================================================ */
#usecases { background: var(--white); }
.usecases-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 60px;
}
.usecase-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  transition: all 0.25s;
  cursor: default;
}
.usecase-card:hover {
  background: var(--green-light);
  border-color: rgba(13,110,63,0.3);
  transform: translateY(-3px);
}
.usecase-card:hover h4 { color: var(--green); }
.uc-icon { font-size: 1.8rem; margin-bottom: 10px; }
.usecase-card h4 { font-size: 0.95rem; color: var(--ink); margin-bottom: 7px; transition: color 0.2s; }
.usecase-card p { color: var(--ink2); font-size: 0.81rem; line-height: 1.6; }

/* ============================================================
   FREE TOOLS SECTION
   EDIT: Add/remove free tool cards
   ============================================================ */
#tools { background: var(--bg2); }
.tools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.tool-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
}
.tool-card:hover {
  box-shadow: 0 6px 24px var(--shadow2);
  transform: translateY(-3px);
}
.tool-card-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 14px; }
.tool-fi { font-size: 2rem; }
.free-tag {
  background: var(--green-light);
  color: var(--green);
  padding: 3px 12px;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.tool-card h3 { font-size: 1.05rem; color: var(--ink); margin-bottom: 8px; }
.tool-card p { color: var(--ink2); font-size: 0.85rem; flex: 1; margin-bottom: 20px; line-height: 1.7; }
.tool-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--green);
  font-size: 0.84rem;
  font-weight: 600;
  margin-top: auto;
  transition: gap 0.2s;
}
.tool-link:hover { gap: 12px; }

/* ============================================================
   HOW IT WORKS SECTION
   EDIT: Change step titles and descriptions
   ============================================================ */
#how { background: var(--white); }
.how-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.steps { display: flex; flex-direction: column; }
.step {
  display: flex;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: 0.25s;
}
.step:first-child { border-top: 1px solid var(--border); }
.step:hover .step-num, .step.active .step-num {
  color: var(--green);
  background: var(--green-light);
}
.step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink3);
  flex-shrink: 0;
  transition: 0.25s;
}
.step-body { padding-top: 10px; }
.step-body h3 { font-size: 1.05rem; color: var(--ink); margin-bottom: 5px; }
.step-detail { display: none; color: var(--ink2); font-size: 0.88rem; margin-top: 8px; line-height: 1.7; }
.step.active .step-detail { display: block; }
/* Visual panel */
.how-visual {
  position: sticky;
  top: 100px;
  background: var(--green-light);
  border: 1px solid rgba(13,110,63,0.2);
  border-radius: var(--radius-lg);
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.how-icon { font-size: 4.5rem; transition: opacity 0.3s; }
.how-label {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--green);
}

/* ============================================================
   PRICING SECTION
   EDIT: Change plan names, prices, features
   To add a feature: copy a <li> and paste inside <ul class="feat-list">
   ============================================================ */
#pricing { background: var(--bg2); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
  margin-top: 60px;
}
.price-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  transition: box-shadow 0.25s, transform 0.25s;
}
.price-card:hover {
  box-shadow: 0 8px 32px var(--shadow2);
  transform: translateY(-4px);
}
.price-card.featured {
  border-color: var(--green);
  border-width: 2px;
}
.popular-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: #fff;
  padding: 4px 18px;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  white-space: nowrap;
}
.plan-name {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink3);
  margin-bottom: 12px;
}
.plan-price {
  font-family: var(--font-head);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 6px;
}
.plan-price sup { font-size: 1.1rem; vertical-align: top; margin-top: 7px; display: inline-block; }
.plan-price sub { font-size: 0.9rem; font-family: var(--font-body); font-weight: 300; }
.plan-desc { color: var(--ink2); font-size: 0.83rem; margin-bottom: 28px; }
.feat-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.feat-list li { display: flex; gap: 10px; align-items: flex-start; color: var(--ink2); font-size: 0.87rem; }
.feat-list li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; margin-top: 2px; }
.feat-list li.na { color: var(--ink3); }
.feat-list li.na::before { content: '—'; color: var(--ink3); font-weight: 400; }

/* ============================================================
   PORTFOLIO / WORK SECTION
   EDIT: Change project cards; filters work by data-cat attribute
   ============================================================ */
#portfolio { background: var(--white); }
.portfolio-filters { display: flex; gap: 8px; flex-wrap: wrap; margin: 24px 0 36px; }
.filter-btn {
  padding: 7px 18px;
  border-radius: 100px;
  border: 1.5px solid var(--border);
  background: transparent;
  color: var(--ink2);
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  transition: all 0.2s;
}
.filter-btn.active, .filter-btn:hover {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.port-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.25s, transform 0.25s;
  cursor: pointer;
}
.port-card:hover {
  box-shadow: 0 8px 28px var(--shadow2);
  transform: translateY(-3px);
}
.port-thumb {
  aspect-ratio: 16/10;
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.8rem;
  border-bottom: 1px solid var(--border);
}
.port-info { padding: 18px; }
.port-info h4 { font-size: 0.95rem; color: var(--ink); margin-bottom: 5px; }
.port-info p { color: var(--ink2); font-size: 0.8rem; line-height: 1.6; }
.port-tags { display: flex; gap: 5px; flex-wrap: wrap; margin-top: 12px; }
.port-tag {
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--ink3);
  padding: 2px 9px;
  border-radius: 100px;
  font-size: 0.7rem;
}

/* ============================================================
   TESTIMONIALS SECTION
   EDIT: Change testimonial cards
   ============================================================ */
#testimonials { background: var(--bg2); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 60px;
}
.testi-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.testi-card:hover {
  box-shadow: 0 6px 24px var(--shadow2);
  transform: translateY(-2px);
}
.stars { color: #F5A623; font-size: 0.9rem; letter-spacing: 2px; margin-bottom: 16px; }
.testi-quote {
  font-family: var(--font-head);
  font-size: 1rem;
  font-style: italic;
  color: var(--ink);
  line-height: 1.75;
  margin-bottom: 24px;
}
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-av {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 0.95rem;
  color: #fff;
  font-weight: 700;
  flex-shrink: 0;
}
.testi-name { font-weight: 600; color: var(--ink); font-size: 0.92rem; }
.testi-role { color: var(--ink3); font-size: 0.79rem; }

/* ============================================================
   FAQ SECTION
   EDIT: Change question and answer text
   ============================================================ */
#faq { background: var(--white); }
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 60px;
}
.faq-item {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
}
.faq-q {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
}
.faq-a { color: var(--ink2); font-size: 0.88rem; line-height: 1.75; }

/* ============================================================
   CONTACT SECTION
   EDIT: Change contact details and form fields
   ============================================================ */
#contact { background: var(--bg2); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 72px;
  align-items: start;
}
.contact-info h2 {
  font-size: clamp(1.8rem, 2.8vw, 2.4rem);
  margin-bottom: 16px;
}
.contact-info h2 em { font-style: italic; color: var(--green); }
.contact-info > p { color: var(--ink2); margin-bottom: 36px; line-height: 1.75; }
.contact-links { display: flex; flex-direction: column; gap: 12px; }
.contact-link {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 500;
  transition: color 0.2s;
}
.contact-link:hover { color: var(--green); }
.contact-link-icon {
  width: 42px;
  height: 42px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
/* Contact form */
.contact-form { display: flex; flex-direction: column; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--ink3);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 12px 15px;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.93rem;
  outline: none;
  transition: border-color 0.2s;
  resize: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(13,110,63,0.08);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* ============================================================
   FOOTER
   EDIT: Change footer links and copyright text
   ============================================================ */
footer {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  padding: 68px 0 36px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 52px;
}
.footer-brand h3 {
  font-family: var(--font-head);
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 12px;
}
.footer-brand h3 span { color: var(--green-light); }
.footer-brand p { font-size: 0.86rem; max-width: 260px; line-height: 1.7; }
.footer-col h4 {
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col a { font-size: 0.85rem; transition: color 0.2s; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}
.footer-bottom p { font-size: 0.8rem; }
.footer-socials { display: flex; gap: 9px; }
.footer-soc {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: all 0.2s;
}
.footer-soc:hover { background: var(--green); border-color: var(--green); color: #fff; }

/* ============================================================
   FADE-IN ANIMATION ON SCROLL
   Elements with class="fade-up" will animate in when visible
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE — MOBILE & TABLET
   ============================================================ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  #companies > .container > div[style*="grid"] { grid-template-columns: repeat(2, 1fr) !important; }
  .tools-grid { grid-template-columns: repeat(2, 1fr); }
  .usecases-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; }
}
@media (max-width: 768px) {
  #navbar { padding: 0 20px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .container { padding: 0 20px; }
  section { padding: 72px 0; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .hook-inner { grid-template-columns: 1fr; gap: 36px; }
  .how-grid { grid-template-columns: 1fr; }
  .how-visual { display: none; }
  .contact-grid { grid-template-columns: 1fr; gap: 44px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .tools-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  footer { padding: 52px 0 28px; }
  .form-row { grid-template-columns: 1fr; }
  #companies > .container > div[style*="grid"] { grid-template-columns: repeat(2, 1fr) !important; }
}