/* =========================================================
   VERVОCARE
   Main Stylesheet
   ========================================================= */


/* =========================================================
   1. VARIABLES
   ========================================================= */

   :root {
    --ink: #17202a;
    --muted: #69737d;
    --line: #e8ecef;
    --soft: #f5f8f9;
    --accent: #3d7f86;
    --dark: #14262a;
    --white: #ffffff;
  
    --radius-sm: 16px;
    --radius-md: 18px;
    --radius-lg: 20px;
    --radius-xl: 24px;
    --radius-xxl: 28px;
  
    --shadow-soft: 0 12px 30px #17202a0b;
    --shadow-card: 0 12px 35px #1b343022;
  
    --transition: 0.2s ease;
  }
  
  
  /* =========================================================
     2. RESET / BASE
     ========================================================= */
  
  * {
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    margin: 0;
    font-family:
      Inter,
      ui-sans-serif,
      system-ui,
      -apple-system,
      BlinkMacSystemFont,
      "Segoe UI",
      sans-serif;
    color: var(--ink);
    line-height: 1.6;
    background: var(--white);
  }
  
  a {
    color: inherit;
    text-decoration: none;
  }
  
  button {
    font: inherit;
  }
  
  
  /* =========================================================
     3. HEADER
     ========================================================= */
  
  header {
    height: 78px;
  
    display: flex;
    align-items: center;
    justify-content: space-between;
  
    padding: 0 6%;
  
    background: var(--white);
    border-bottom: 1px solid var(--line);
  
    position: sticky;
    top: 0;
    z-index: 20;
  }
  
  
  /* Logo */
  
  .logo {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 0.12em;
  }
  
  .logo span {
    font-weight: 500;
  }
  
  
  /* Navigation */
  
  nav {
    display: flex;
    align-items: center;
    gap: 28px;
    font-size: 14px;
  }
  
  nav a {
    transition:
      color var(--transition),
      opacity var(--transition);
  }
  
  nav a:not(.nav-cta) {
    color: #4f5962;
  }
  
  nav a:not(.nav-cta):hover {
    color: var(--accent);
  }
  
  
  /* Navigation CTA */
  
  .nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  
    padding: 12px 20px;
  
    border-radius: 999px;
  
    background: var(--dark);
    color: var(--white);
  
    transition:
      transform var(--transition),
      opacity var(--transition);
  }
  
  .nav-cta:hover {
    transform: translateY(-1px);
    opacity: 0.92;
  }
  
  
  /* Mobile Menu */
  
  .menu {
    display: none;
  
    padding: 4px;
  
    background: none;
    border: 0;
  
    color: var(--ink);
    font-size: 25px;
  
    cursor: pointer;
  }
  
  
  /* =========================================================
     4. BUTTONS
     ========================================================= */
  
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  
    padding: 12px 20px;
  
    border-radius: 999px;
  
    font-weight: 700;
  
    transition:
      transform var(--transition),
      opacity var(--transition);
  }
  
  .btn:hover {
    transform: translateY(-1px);
  }
  
  .primary {
    background: var(--dark);
    color: var(--white);
  }
  
  .secondary {
    border: 1px solid #cfd6da;
    background: transparent;
  }
  
  .light {
    background: var(--white);
    color: var(--dark);
  }
  
  
  /* =========================================================
     5. TYPOGRAPHY
     ========================================================= */
  
  .eyebrow {
    margin: 0 0 14px;
  
    color: var(--accent);
  
    font-size: 11px;
    font-weight: 800;
  
    letter-spacing: 0.18em;
  }
  
  .section h2,
  .feature h2,
  .about h2,
  .location h2,
  .cta h2 {
    margin: 0 0 16px;
  
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1.08;
  
    letter-spacing: -0.035em;
  }
  
  .section-head {
    max-width: 700px;
    margin-bottom: 45px;
  }
  
  .section-head > p:last-child,
  .feature p,
  .about p,
  .location p {
    color: var(--muted);
  }
  
  
  /* =========================================================
     6. HERO
     ========================================================= */
  
  .hero {
    min-height: 680px;
  
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 7%;
  
    align-items: center;
  
    padding: 80px 6%;
  
    background:
      linear-gradient(
        135deg,
        #f6faf9,
        #ffffff
      );
  }
  
  .hero h1 {
    margin: 0 0 25px;
  
    font-size: clamp(48px, 6vw, 82px);
    line-height: 1.02;
  
    letter-spacing: -0.045em;
  }
  
  .hero h1 em {
    color: var(--accent);
    font-style: normal;
  }
  
  .lead {
    max-width: 590px;
  
    color: var(--muted);
    font-size: 18px;
  }
  
  .actions {
    display: flex;
    gap: 12px;
  
    margin: 30px 0;
  }
  
  .trust {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  
    color: #657078;
    font-size: 12px;
  }
  
  
  /* Hero Card */
  
  .hero-card {
    height: 500px;
  
    position: relative;
    overflow: hidden;
  
    border-radius: var(--radius-xxl);
  
    background: #dce9e7;
  }
  
  .photo-placeholder,
  .about-img {
    height: 100%;
  
    display: flex;
    align-items: center;
    justify-content: center;
  
    background:
      linear-gradient(
        145deg,
        #dce9e7,
        #c8dcd9
      );
  
    color: #6b8582;
  
    font-weight: 800;
    letter-spacing: 0.25em;
  }
  
  .floating {
    display: grid;
  
    position: absolute;
    left: 25px;
    bottom: 25px;
  
    padding: 18px 22px;
  
    background: var(--white);
    border-radius: var(--radius-sm);
  
    box-shadow: var(--shadow-card);
  }
  
  .floating small {
    color: var(--muted);
  }
  
  
  /* =========================================================
     7. GENERAL SECTION
     ========================================================= */
  
  .section {
    padding: 105px 6%;
  }
  
  
  /* =========================================================
     8. SERVICES
     ========================================================= */
  
  .grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  
  .cards article {
    min-height: 205px;
  
    padding: 30px;
  
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
  
    transition:
      transform var(--transition),
      box-shadow var(--transition);
  }
  
  .cards article:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-soft);
  }
  
  .icon {
    color: var(--accent);
  
    font-size: 12px;
    font-weight: 800;
  }
  
  .cards h3 {
    margin: 25px 0 8px;
  
    font-size: 21px;
  }
  
  .cards p {
    color: var(--muted);
    font-size: 14px;
  }
  
  
  /* =========================================================
     9. FEATURE
     ========================================================= */
  
  .feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10%;
  
    align-items: center;
  
    padding: 95px 6%;
  
    background: var(--dark);
    color: var(--white);
  }
  
  .feature p {
    color: #b8c6c8;
  }
  
  .stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  
  .stats div {
    padding: 25px;
  
    border: 1px solid #ffffff22;
    border-radius: var(--radius-sm);
  }
  
  .stats b {
    display: block;
  
    margin-bottom: 4px;
  
    color: #9fc3c0;
  }
  
  .stats span {
    font-weight: 700;
  }
  
  
  /* =========================================================
     10. PRICE
     ========================================================= */
  
  .price-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  
  .price-grid article {
    padding: 32px;
  
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
  }
  
  .price-grid .featured {
    background: var(--soft);
    border-color: #b8cfcc;
  }
  
  .price-grid span {
    color: var(--accent);
  
    font-size: 11px;
    font-weight: 800;
  
    letter-spacing: 0.16em;
  }
  
  .price-grid h3 {
    font-size: 24px;
  }
  
  .price-grid strong {
    font-size: 34px;
  }
  
  .price-grid strong span {
    color: var(--muted);
  
    font-size: 13px;
    letter-spacing: 0;
  }
  
  .price-grid p {
    color: var(--muted);
  }
  
  .price-grid a,
  .text-link {
    color: var(--accent);
    font-weight: 800;
  }
  
  
  /* =========================================================
     11. PROCESS
     ========================================================= */
  
  .process {
    padding: 100px 6%;
    background: var(--soft);
  }
  
  .steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
  
  .steps div {
    padding-top: 20px;
    border-top: 2px solid var(--accent);
  }
  
  .steps b {
    color: var(--accent);
    font-size: 12px;
  }
  
  .steps h3 {
    margin-bottom: 5px;
  }
  
  .steps p {
    color: var(--muted);
    font-size: 14px;
  }
  
  
  /* =========================================================
     12. ABOUT & LOCATION
     ========================================================= */
  
  .about,
  .location {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8%;
  
    align-items: center;
  
    padding: 100px 6%;
  }
  
  .about-img {
    height: 440px;
    border-radius: var(--radius-xl);
  }
  
  
  /* Map */
  
  .map {
    height: 330px;
  
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  
    border-radius: var(--radius-xl);
  
    background: #e9eeee;
  
    color: #74807f;
  
    font-weight: 800;
    text-align: center;
  }
  
  .map small {
    font-weight: 400;
  }
  
  
  /* =========================================================
     13. CTA
     ========================================================= */
  
  .cta {
    padding: 105px 6%;
  
    background: var(--accent);
    color: var(--white);
  
    text-align: center;
  }
  
  .cta .eyebrow {
    color: #d8eeee;
  }
  
  .cta h2 {
    margin-bottom: 30px;
  }
  
  
  /* =========================================================
     14. FOOTER
     ========================================================= */
  
  footer {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
  
    padding: 65px 6%;
  
    background: #101c1f;
    color: #dce4e5;
  }
  
  footer > div {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  
  footer p,
  footer a {
    color: #93a3a6;
    font-size: 14px;
  }
  
  footer a {
    transition: color var(--transition);
  }
  
  footer a:hover {
    color: var(--white);
  }
  
  
  /* =========================================================
     15. COPYRIGHT
     ========================================================= */
  
  .copy {
    padding: 18px 6%;
  
    background: #0b1517;
  
    border-top: 1px solid #ffffff10;
  
    color: #708084;
  
    font-size: 12px;
  }
  
  
  /* =========================================================
     16. TABLET
     ========================================================= */
  
  @media (max-width: 850px) {
  
    nav {
      display: none;
    }
  
    nav.is-open {
      display: flex;
  
      position: absolute;
      top: 78px;
      left: 0;
      right: 0;
  
      padding: 20px 6%;
  
      background: var(--white);
  
      flex-direction: column;
      align-items: flex-start;
  
      border-bottom: 1px solid var(--line);
      box-shadow: 0 10px 25px #17202a0b;
    }
  
    .menu {
      display: block;
    }
  
    .hero,
    .feature,
    .about,
    .location {
      grid-template-columns: 1fr;
    }
  
    .hero {
      padding-top: 55px;
    }
  
    .hero-card {
      height: 390px;
    }
  
    .grid,
    .price-grid {
      grid-template-columns: 1fr 1fr;
    }
  
    .steps {
      grid-template-columns: 1fr 1fr;
    }
  
    .about-img {
      height: 330px;
    }
  }
  
  
  /* =========================================================
     17. MOBILE
     ========================================================= */
  
  @media (max-width: 560px) {
  
    header {
      padding: 0 5%;
    }
  
    .hero,
    .section,
    .feature,
    .process,
    .about,
    .location,
    .cta {
      padding-left: 5%;
      padding-right: 5%;
    }
  
    .hero h1 {
      font-size: 48px;
    }
  
    .actions {
      flex-direction: column;
    }
  
    .btn {
      width: 100%;
    }
  
    .hero-card {
      height: 320px;
    }
  
    .grid,
    .price-grid,
    .steps,
    .stats {
      grid-template-columns: 1fr;
    }
  
    footer {
      grid-template-columns: 1fr;
      padding: 50px 5%;
    }
  
    nav.is-open {
      padding-left: 5%;
      padding-right: 5%;
    }
  }
  
  
  /* =========================================================
     END OF STYLESHEET
     ========================================================= */