/*
Theme Name: AutoFlow Digital Agency
Theme URI: https://autoflowbd.com
Author: AutoFlow Digital
Author URI: https://autoflowbd.com
Description: A custom one-page agency theme for AutoFlow — Digital Marketing & WordPress Agency. Converted from a static HTML design into a WordPress theme. The homepage shows the original design out of the box, and is fully ready to be edited/customized with Elementor.
Version: 1.0
Requires at least: 5.8
Requires PHP: 7.4
Tested up to: 6.6
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: autoflow
*/

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

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Inter', sans-serif;
      background: #fff;
      color: #0a0a0a;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
      font-size: 20px; /* Scaled up from baseline */
    }

    a    { text-decoration: none; color: inherit; }
    img  { max-width: 100%; display: block; }
    button { cursor: pointer; font-family: 'Inter', sans-serif; }


    /* ----------------------------------------------------------
       CSS VARIABLES (Scaled ~25% Larger)
    ---------------------------------------------------------- */
    :root {
      --black:      #0a0a0a;
      --white:      #ffffff;
      --gray-50:    #fafafa;
      --gray-100:   #f5f5f5;
      --gray-200:   #e8e8e8;
      --gray-300:   #d0d0d0;
      --gray-400:   #aaaaaa;
      --gray-500:   #888888;
      --gray-600:   #666666;
      --gray-900:   #111111;
      --green:      #22c55e;

      --radius-sm:   10px;  /* 8px * 1.25 */
      --radius-md:   15px;  /* 12px * 1.25 */
      --radius-lg:   20px;  /* 16px * 1.25 */
      --radius-xl:   30px;  /* 24px * 1.25 */
      --radius-full: 9999px;

      --shadow: 0 2px 4px rgba(0,0,0,0.08), 0 5px 20px rgba(0,0,0,0.06);
    }


    /* ----------------------------------------------------------
       ANIMATIONS
    ---------------------------------------------------------- */
    .fade-up {
      opacity: 0;
      transform: translateY(30px); /* 24px * 1.25 */
      transition: opacity 0.5s ease, transform 0.5s ease;
    }
    .fade-up.visible {
      opacity: 1;
      transform: translateY(0);
    }

    @keyframes pulse {
      0%, 100% { opacity: 1; }
      50%       { opacity: 0.4; }
    }


    /* ----------------------------------------------------------
       SHARED SECTION STYLES
    ---------------------------------------------------------- */
    .section-header    { margin-bottom: 70px; } /* 56px * 1.25 */

    .section-label {
      font-size: 14px; /* 11px * 1.25 */
      font-weight: 700;
      color: var(--gray-400);
      text-transform: uppercase;
      letter-spacing: 2px;
      margin-bottom: 12px;
    }

    .section-title {
      font-size: 50px; /* 40px * 1.25 */
      font-weight: 700;
      color: var(--black);
      letter-spacing: -1.5px;
      line-height: 1.15;
      margin-bottom: 15px;
    }

    .section-desc {
      font-size: 19px; /* 15px * 1.25 */
      color: var(--gray-500);
      line-height: 1.7;
      max-width: 600px; /* Scaled up layout max-width */
    }


    /* ----------------------------------------------------------
       SHARED BUTTONS
    ---------------------------------------------------------- */
    .btn-primary {
      background: var(--black);
      color: var(--white);
      border: none;
      padding: 18px 35px; /* 14px/28px * 1.25 */
      border-radius: var(--radius-sm);
      font-size: 18px; /* 14px * 1.25 */
      font-weight: 600;
      transition: opacity 0.15s;
      display: inline-flex;
      align-items: center;
      gap: 10px;
    }
    .btn-primary:hover { opacity: 0.85; }

    .btn-secondary {
      background: var(--white);
      color: var(--black);
      border: 1px solid var(--gray-200);
      padding: 18px 35px;
      border-radius: var(--radius-sm);
      font-size: 18px;
      font-weight: 500;
      transition: all 0.15s;
    }
    .btn-secondary:hover { border-color: var(--gray-400); }

    .btn-white {
      background: var(--white);
      color: var(--black);
      border: none;
      padding: 18px 35px;
      border-radius: var(--radius-sm);
      font-size: 18px;
      font-weight: 700;
      transition: opacity 0.15s;
    }
    .btn-white:hover { opacity: 0.9; }

    .btn-ghost {
      background: transparent;
      color: var(--white);
      border: 1px solid #333;
      padding: 18px 35px;
      border-radius: var(--radius-sm);
      font-size: 18px;
      font-weight: 500;
      transition: border-color 0.15s;
    }
    .btn-ghost:hover { border-color: #555; }
.nav {
      position: sticky;
      top: 0;
      z-index: 100;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0 70px; /* 56px * 1.25 */
      height: 80px; /* 64px * 1.25 */
      background: rgba(255,255,255,0.94);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--gray-200);
    }

    /* Logo */
    .nav-logo {
      display: flex;
      align-items: center;
      gap: 11px;
    }
    .nav-logo-icon {
      width: 40px; /* 32px * 1.25 */
      height: 40px;
      background: var(--black);
      border-radius: 9px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .nav-logo-icon svg { width: 20px; height: 20px; fill: #fff; }
    .nav-logo-name {
      font-size: 20px; /* 16px * 1.25 */
      font-weight: 700;
      color: var(--black);
      letter-spacing: -0.4px;
    }

    /* Desktop links */
    .nav-links { display: flex; gap: 5px; }
    .nav-links a {
      font-size: 16px; /* 13px * 1.25 */
      font-weight: 500;
      color: var(--gray-500);
      padding: 8px 18px; /* 6px/14px * 1.25 */
      border-radius: 8px;
      transition: all 0.15s ease;
    }
    .nav-links a:hover { background: var(--gray-100); color: var(--black); }

    /* Right side */
    .nav-right { display: flex; align-items: center; gap: 12px; }
    .nav-status {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 15px; /* 12px * 1.25 */
      color: var(--gray-500);
      border: 1px solid var(--gray-200);
      padding: 6px 15px;
      border-radius: var(--radius-full);
    }
    .status-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--green);
      animation: pulse 2s infinite;
    }
    .btn-nav {
      background: var(--black);
      color: var(--white);
      border: none;
      padding: 11px 25px; /* 9px/20px * 1.25 */
      border-radius: var(--radius-sm);
      font-size: 16px; /* 13px * 1.25 */
      font-weight: 600;
      transition: opacity 0.15s;
    }
    .btn-nav:hover { opacity: 0.85; }

    /* Hamburger */
    .nav-hamburger {
      display: none;
      flex-direction: column;
      gap: 6px;
      background: none;
      border: none;
      padding: 8px;
    }
    .nav-hamburger span {
      width: 28px; /* 22px * 1.25 */
      height: 3px;
      background: var(--black);
      border-radius: 2px;
      display: block;
      transition: all 0.3s;
    }

    /* Mobile dropdown */
    .mobile-menu {
      display: none;
      position: fixed;
      top: 80px; left: 0; right: 0;
      background: #fff;
      border-bottom: 1px solid var(--gray-200);
      padding: 20px 30px;
      z-index: 99;
      flex-direction: column;
      gap: 5px;
    }
    .mobile-menu a {
      display: block;
      font-size: 19px; /* 15px * 1.25 */
      font-weight: 500;
      color: var(--black);
      padding: 15px 20px;
      border-radius: var(--radius-sm);
      transition: background 0.15s;
    }
    .mobile-menu a:hover { background: var(--gray-100); }
    .mobile-menu.open { display: flex; }
.hero {
      padding: 110px 70px 90px; /* Scaled up padding */
      background: var(--white);
      max-width: 1500px; /* 1200px * 1.25 */
      margin: 0 auto;
    }

    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      background: var(--gray-100);
      border: 1px solid var(--gray-200);
      border-radius: var(--radius-full);
      padding: 6px 18px;
      font-size: 15px; /* 12px * 1.25 */
      color: var(--gray-600);
      font-weight: 500;
      margin-bottom: 35px;
    }

    .hero h1 {
      font-size: 72px; /* 58px * 1.25 */
      font-weight: 700;
      line-height: 1.1;
      letter-spacing: -2.5px;
      color: var(--black);
      max-width: 875px;
      margin-bottom: 25px;
    }
    .hero h1 em {
      font-style: normal;
      text-decoration: underline;
      text-decoration-thickness: 5px;
      text-underline-offset: 6px;
    }

    .hero-sub {
      font-size: 21px; /* 17px * 1.25 */
      color: var(--gray-600);
      line-height: 1.75;
      max-width: 650px;
      margin-bottom: 45px;
    }

    .hero-btns {
      display: flex;
      align-items: center;
      gap: 15px;
      margin-bottom: 50px;
      flex-wrap: wrap;
    }

    /* Social proof avatars */
    .hero-social-proof {
      display: flex;
      align-items: center;
      gap: 18px;
      margin-bottom: 70px;
    }
    .sp-avatars { display: flex; }
    .sp-av {
      width: 38px; /* 30px * 1.25 */
      height: 38px;
      border-radius: 50%;
      border: 2px solid #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 13px; /* 10px * 1.25 */
      font-weight: 700;
      margin-left: -10px;
    }
    .sp-av:first-child { margin-left: 0; }
    .sp-text          { font-size: 16px; color: var(--gray-400); }
    .sp-text strong   { color: var(--black); }

    /* Stats grid */
    .hero-metrics {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 2px;
      background: var(--gray-200);
      border: 2px solid var(--gray-200);
      border-radius: var(--radius-md);
      overflow: hidden;
      max-width: 1025px; /* 820px * 1.25 */
    }
    .metric {
      background: var(--white);
      padding: 25px 30px;
    }
    .metric-val {
      font-size: 32px; /* 26px * 1.25 */
      font-weight: 700;
      color: var(--black);
      letter-spacing: -0.5px;
    }
    .metric-val span   { font-size: 22px; color: var(--gray-400); }
    .metric-label {
      font-size: 14px; /* 11px * 1.25 */
      color: var(--gray-400);
      text-transform: uppercase;
      letter-spacing: 0.5px;
      font-weight: 500;
      margin-top: 4px;
    }
    .metric-change {
      font-size: 14px;
      color: var(--green);
      font-weight: 600;
      margin-top: 5px;
    }
.logos-strip {
      padding: 35px 70px;
      background: var(--gray-50);
      border-top: 1px solid var(--gray-200);
      border-bottom: 1px solid var(--gray-200);
      overflow: hidden;
    }
    .logos-label {
      font-size: 14px;
      color: #c0c0c0;
      text-transform: uppercase;
      letter-spacing: 2px;
      font-weight: 600;
      text-align: center;
      margin-bottom: 25px;
    }
    .logos-list {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 60px; /* 48px * 1.25 */
      flex-wrap: wrap;
    }
    .logo-item {
      display: flex;
      align-items: center;
      gap: 9px;
      font-size: 16px; /* 13px * 1.25 */
      font-weight: 700;
      color: #c8c8c8;
      letter-spacing: -0.2px;
      white-space: nowrap;
    }
    .logo-item svg { width: 22px; height: 22px; fill: #c8c8c8; }
.section-services {
      padding: 120px 70px; /* 96px * 1.25 */
      background: var(--white);
    }

    .services-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2px;
      background: var(--gray-200);
      border: 1px solid var(--gray-200);
      border-radius: var(--radius-lg);
      overflow: hidden;
    }

    .service-card {
      background: var(--white);
      padding: 50px; /* 40px * 1.25 */
      transition: background 0.2s;
    }
    .service-card.dark              { background: var(--black); }
    .service-card:hover:not(.dark)  { background: var(--gray-50); }

    .svc-number {
      font-size: 13px; /* 10px * 1.25 */
      font-weight: 700;
      color: var(--gray-300);
      letter-spacing: 2px;
      text-transform: uppercase;
      margin-bottom: 25px;
    }
    .service-card.dark .svc-number { color: #333; }

    .svc-icon {
      width: 55px; /* 44px * 1.25 */
      height: 55px;
      border-radius: 12px;
      background: var(--gray-100);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 25px;
    }
    .service-card.dark .svc-icon    { background: rgba(255,255,255,0.08); }
    .svc-icon svg                   { width: 25px; height: 25px; fill: var(--black); }
    .service-card.dark .svc-icon svg { fill: var(--white); }

    .svc-title {
      font-size: 22px; /* 18px * 1.25 */
      font-weight: 700;
      color: var(--black);
      letter-spacing: -0.4px;
      margin-bottom: 10px;
    }
    .service-card.dark .svc-title { color: var(--white); }

    .svc-desc {
      font-size: 16px; /* 13px * 1.25 */
      color: var(--gray-500);
      line-height: 1.7;
      margin-bottom: 28px;
    }
    .service-card.dark .svc-desc { color: #555; }

    .svc-features {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin-bottom: 35px;
    }
    .svc-features li {
      font-size: 15px; /* 12px * 1.25 */
      color: var(--gray-600);
      display: flex;
      align-items: center;
      gap: 11px;
    }
    .service-card.dark .svc-features li { color: #555; }
    .svc-features li::before {
      content: '✓';
      color: var(--green);
      font-weight: 700;
      font-size: 15px;
      flex-shrink: 0;
    }

    .svc-footer {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-top: 25px;
      border-top: 1px solid var(--gray-100);
    }
    .service-card.dark .svc-footer { border-top-color: rgba(255,255,255,0.07); }

    .svc-price {
      font-size: 19px; /* 15px * 1.25 */
      font-weight: 700;
      color: var(--black);
    }
    .service-card.dark .svc-price { color: var(--white); }
    .svc-price small {
      font-size: 15px; /* 12px * 1.25 */
      font-weight: 400;
      color: var(--gray-400);
    }

    .svc-cta {
      font-size: 15px;
      color: var(--gray-400);
      font-weight: 500;
      display: flex;
      align-items: center;
      gap: 5px;
      transition: color 0.15s;
    }
    .service-card:hover .svc-cta      { color: var(--black); }
    .service-card.dark:hover .svc-cta { color: var(--gray-300); }
.section-process {
      padding: 120px 70px;
      background: var(--gray-50);
      border-top: 1px solid var(--gray-200);
    }

    .process-layout {
      display: grid;
      grid-template-columns: 1fr 2fr;
      gap: 100px; /* 80px * 1.25 */
      align-items: start;
    }

    .process-steps {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    }

    .process-step {
      background: var(--white);
      border: 1px solid var(--gray-200);
      border-radius: var(--radius-md);
      padding: 35px; /* 28px * 1.25 */
    }

    .step-num {
      font-size: 13px;
      font-weight: 700;
      color: var(--gray-300);
      letter-spacing: 1.5px;
      margin-bottom: 18px;
      text-transform: uppercase;
    }

    .step-icon {
      width: 45px; /* 36px * 1.25 */
      height: 45px;
      border-radius: var(--radius-sm);
      background: var(--black);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 18px;
    }
    .step-icon svg { width: 20px; height: 20px; fill: #fff; }

    .step-title {
      font-size: 19px; /* 15px * 1.25 */
      font-weight: 600;
      color: var(--black);
      margin-bottom: 8px;
    }

    .step-desc {
      font-size: 15px; /* 12px * 1.25 */
      color: var(--gray-500);
      line-height: 1.65;
    }
.section-results {
      padding: 120px 70px;
      background: var(--black);
    }
    .section-results .section-label { color: #333; }
    .section-results .section-title { color: var(--white); }

    .results-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-top: 60px;
    }

    .result-card {
      background: #141414;
      border: 1px solid #1e1e1e;
      border-radius: var(--radius-md);
      padding: 40px; /* 32px * 1.25 */
    }

    .result-tag {
      font-size: 13px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      color: #444;
      margin-bottom: 25px;
    }

    .result-num {
      font-size: 65px; /* 52px * 1.25 */
      font-weight: 700;
      color: var(--white);
      letter-spacing: -2.5px;
      line-height: 1;
      margin-bottom: 8px;
    }
    .result-num span { font-size: 45px; color: #333; }

    .result-label  { font-size: 16px; color: #444; margin-bottom: 20px; }

    .result-bar {
      height: 3px;
      background: #222;
      border-radius: 2px;
      overflow: hidden;
    }
    .result-bar-fill { height: 100%; background: var(--white); border-radius: 2px; }

    .result-tags {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
      margin-top: 20px;
    }
    .result-tag-item {
      font-size: 14px; /* 11px * 1.25 */
      color: #444;
      border: 1px solid #222;
      padding: 4px 12px;
      border-radius: var(--radius-full);
    }
.section-testimonials {
      padding: 120px 70px;
      background: var(--white);
      border-top: 1px solid var(--gray-200);
    }

    .test-top {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      margin-bottom: 60px;
    }
    .test-rating        { text-align: right; }
    .test-stars {
      font-size: 30px; /* 24px * 1.25 */
      letter-spacing: 4px;
      color: var(--black);
      margin-bottom: 5px;
    }
    .test-rating-sub    { font-size: 15px; color: var(--gray-400); }

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

    .testimonial-card {
      border: 1px solid var(--gray-200);
      border-radius: var(--radius-md);
      padding: 35px; /* 28px * 1.25 */
      transition: border-color 0.2s;
    }
    .testimonial-card:hover { border-color: var(--gray-400); }

    .tc-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      margin-bottom: 20px;
    }
    .tc-author { display: flex; align-items: center; gap: 12px; }
    .tc-avatar {
      width: 45px; /* 36px * 1.25 */
      height: 45px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 15px;
      font-weight: 700;
      flex-shrink: 0;
    }
    .tc-name {
      font-size: 18px; /* 14px * 1.25 */
      font-weight: 600;
      color: var(--black);
    }
    .tc-role     { font-size: 14px; color: var(--gray-400); }
    .tc-verified {
      font-size: 14px;
      color: var(--green);
      font-weight: 600;
      white-space: nowrap;
    }
    .tc-body {
      font-size: 16px; /* 13px * 1.25 */
      color: var(--gray-600);
      line-height: 1.75;
      font-style: italic;
    }
.section-pricing {
      padding: 120px 70px;
      background: var(--gray-50);
      border-top: 1px solid var(--gray-200);
    }

    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-top: 60px;
    }

    .price-card {
      background: var(--white);
      border: 1px solid var(--gray-200);
      border-radius: var(--radius-lg);
      padding: 40px; /* 32px * 1.25 */
    }
    .price-card.popular {
      background: var(--black);
      border-color: var(--black);
    }

    .price-badge {
      display: inline-block;
      font-size: 13px;
      font-weight: 700;
      background: var(--gray-100);
      color: var(--gray-500);
      padding: 5px 15px;
      border-radius: var(--radius-full);
      margin-bottom: 20px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }
    .price-card.popular .price-badge {
      background: rgba(255,255,255,0.1);
      color: #666;
    }

    .price-name {
      font-size: 18px; /* 14px * 1.25 */
      font-weight: 600;
      color: var(--black);
      margin-bottom: 8px;
    }
    .price-card.popular .price-name { color: var(--white); }

    .price-desc {
      font-size: 15px; /* 12px * 1.25 */
      color: var(--gray-400);
      line-height: 1.6;
      margin-bottom: 25px;
    }

    .price-amount {
      font-size: 48px; /* 38px * 1.25 */
      font-weight: 700;
      color: var(--black);
      letter-spacing: -1px;
      margin-bottom: 5px;
    }
    .price-card.popular .price-amount { color: var(--white); }
    .price-amount small { font-size: 19px; font-weight: 400; color: var(--gray-400); }

    .price-period { font-size: 15px; color: var(--gray-400); margin-bottom: 30px; }

    .price-btn {
      width: 100%;
      padding: 15px; /* 12px * 1.25 */
      border-radius: var(--radius-sm);
      font-size: 16px; /* 13px * 1.25 */
      font-weight: 600;
      background: var(--white);
      color: var(--black);
      border: 1px solid var(--gray-200);
      margin-bottom: 30px;
      transition: all 0.15s;
    }
    .price-btn:hover { background: var(--gray-50); border-color: var(--gray-300); }
    .price-card.popular .price-btn {
      background: var(--white);
      color: var(--black);
      border: none;
    }

    .price-features { display: flex; flex-direction: column; gap: 12px; }
    .price-feat {
      font-size: 15px; /* 12px * 1.25 */
      color: var(--gray-600);
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .price-card.popular .price-feat { color: #666; }
    .price-feat::before {
      content: '✓';
      color: var(--green);
      font-weight: 700;
      font-size: 15px;
      flex-shrink: 0;
    }
.section-products {
      padding: 120px 70px;
      background: var(--white);
      border-top: 1px solid var(--gray-200);
    }

    .products-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-top: 60px;
    }

    .product-card {
      border: 1px solid var(--gray-200);
      border-radius: var(--radius-md);
      overflow: hidden;
      transition: border-color 0.2s, box-shadow 0.2s;
    }
    .product-card:hover {
      border-color: var(--gray-400);
      box-shadow: var(--shadow);
    }

    /* Coloured top panel */
    .product-top {
      padding: 35px 30px 25px; /* Scaled up padding */
      position: relative;
    }
    .product-top.wp    { background: linear-gradient(135deg, #1a2744, #2a4080); }
    .product-top.woo   { background: linear-gradient(135deg, #1a2a20, #1a5c32); }
    .product-top.rank  { background: linear-gradient(135deg, #2a1a2a, #5c2a5c); }
    .product-top.elem  { background: linear-gradient(135deg, #2a2a1a, #5c4a10); }
    .product-top.yoast { background: linear-gradient(135deg, #1a2a2a, #0f5c56); }
    .product-top.wpf   { background: linear-gradient(135deg, #2a1a1a, #7a2020); }

    /* Badge ribbon */
    .product-ribbon {
      position: absolute;
      top: 18px; right: 18px;
      font-size: 13px; /* 10px * 1.25 */
      font-weight: 700;
      padding: 4px 12px;
      border-radius: var(--radius-full);
    }
    .ribbon-gpl { background: rgba(34,197,94,0.18);  color: var(--green); border: 1px solid rgba(34,197,94,0.3); }
    .ribbon-hot { background: rgba(232,93,38,0.18);   color: #e85d26;      border: 1px solid rgba(232,93,38,0.3); }
    .ribbon-new { background: rgba(99,102,241,0.18);  color: #818cf8;      border: 1px solid rgba(99,102,241,0.3); }

    .product-icon    { font-size: 45px; opacity: 0.6; margin-bottom: 18px; }
    .product-name    { font-size: 19px; font-weight: 600; color: #fff; margin-bottom: 6px; }
    .product-tagline { font-size: 14px; color: rgba(255,255,255,0.4); line-height: 1.5; }

    /* Bottom price row */
    .product-bottom {
      padding: 20px 30px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: #fff;
      border-top: 1px solid var(--gray-100);
    }
    .product-price-new {
      font-size: 22px; /* 18px * 1.25 */
      font-weight: 700;
      color: var(--black);
    }
    .product-price-old {
      font-size: 15px;
      color: var(--gray-300);
      text-decoration: line-through;
      margin-left: 8px;
    }
    .product-save {
      font-size: 13px;
      color: var(--green);
      font-weight: 700;
      margin-top: 3px;
    }
    .product-btn {
      background: var(--black);
      color: var(--white);
      border: none;
      padding: 10px 20px; /* 8px/16px * 1.25 */
      border-radius: var(--radius-sm);
      font-size: 15px; /* 12px * 1.25 */
      font-weight: 600;
      transition: opacity 0.15s;
    }
    .product-btn:hover { opacity: 0.8; }
.section-cta {
      padding: 120px 70px;
      background: var(--black);
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 100px; /* 80px * 1.25 */
      align-items: center;
    }

    .cta-title {
      font-size: 58px; /* 46px * 1.25 */
      font-weight: 700;
      color: var(--white);
      letter-spacing: -2px;
      line-height: 1.15;
      margin-bottom: 20px;
    }

    .cta-desc {
      font-size: 19px; /* 15px * 1.25 */
      color: #555;
      line-height: 1.75;
      margin-bottom: 40px;
    }

    .cta-btns { display: flex; gap: 15px; flex-wrap: wrap; }

    /* Contact cards */
    .contact-list  { display: flex; flex-direction: column; gap: 15px; }
    .contact-item {
      display: flex;
      align-items: center;
      gap: 18px;
      padding: 22px 28px; /* 18px/22px * 1.25 */
      background: #111;
      border: 1px solid #1e1e1e;
      border-radius: var(--radius-md);
      transition: border-color 0.2s;
    }
    .contact-item:hover { border-color: #333; }

    .contact-icon {
      width: 50px; /* 40px * 1.25 */
      height: 50px;
      border-radius: var(--radius-sm);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .contact-icon svg { width: 22px; height: 22px; fill: #fff; }
    .ci-wa { background: var(--green); }
    .ci-em { background: #3b82f6; }
    .ci-fb { background: #1877f2; }

    .contact-label {
      font-size: 13px;
      color: #444;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      font-weight: 600;
    }
    .contact-value {
      font-size: 18px; /* 14px * 1.25 */
      color: var(--white);
      font-weight: 500;
      margin-top: 3px;
    }
.footer {
      padding: 28px 70px; /* 22px/56px * 1.25 */
      background: var(--white);
      border-top: 1px solid var(--gray-200);
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 15px;
    }

    .footer-logo { display: flex; align-items: center; gap: 10px; }
    .footer-logo-icon {
      width: 32px; /* 26px * 1.25 */
      height: 32px;
      background: var(--black);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .footer-logo-icon svg { width: 15px; height: 15px; fill: #fff; }
    .footer-logo-name {
      font-size: 18px; /* 14px * 1.25 */
      font-weight: 700;
      color: var(--black);
    }

    .footer-copy { font-size: 15px; color: var(--gray-300); }

    .footer-links { display: flex; gap: 25px; }
    .footer-links a {
      font-size: 15px;
      color: var(--gray-400);
      transition: color 0.15s;
    }
    .footer-links a:hover { color: var(--black); }
@media (max-width: 900px) {

      /* Nav */
      .nav             { padding: 0 30px; height: 80px; }
      .nav-links       { display: none; }
      .nav-status      { display: none; }
      .nav-hamburger   { display: flex; }

      /* Hero */
      .hero            { padding: 70px 30px 60px; }
      .hero h1         { font-size: 48px; letter-spacing: -1px; }
      .hero-metrics    { grid-template-columns: repeat(2, 1fr); }

      /* Logos */
      .logos-strip     { padding: 25px 30px; }
      .logos-list      { gap: 30px; }

      /* Services */
      .section-services   { padding: 80px 30px; }
      .services-grid      { grid-template-columns: 1fr; }

      /* Process */
      .section-process    { padding: 80px 30px; }
      .process-layout     { grid-template-columns: 1fr; gap: 50px; }

      /* Results */
      .section-results    { padding: 80px 30px; }
      .results-grid       { grid-template-columns: 1fr; gap: 15px; }

      /* Testimonials */
      .section-testimonials { padding: 80px 30px; }
      .test-top             { flex-direction: column; align-items: flex-start; gap: 20px; }
      .testimonials-grid    { grid-template-columns: 1fr; }

      /* Pricing */
      .section-pricing    { padding: 80px 30px; }
      .pricing-grid       { grid-template-columns: 1fr; }

      /* Products */
      .section-products   { padding: 80px 30px; }
      .products-grid      { grid-template-columns: 1fr 1fr; }

      /* CTA */
      .section-cta  { padding: 80px 30px; grid-template-columns: 1fr; gap: 50px; }
      .cta-title    { font-size: 40px; }

      /* Footer */
      .footer       { padding: 22px 30px; }
      .footer-links { display: none; }
    }
@media (max-width: 600px) {
      .hero h1           { font-size: 38px; letter-spacing: -0.5px; }
      .hero-sub          { font-size: 19px; }
      .hero-btns         { flex-direction: column; align-items: flex-start; }
      .btn-primary,
      .btn-secondary     { width: 100%; justify-content: center; }
      .hero-metrics      { grid-template-columns: 1fr 1fr; }
      .section-title     { font-size: 35px; }
      .products-grid     { grid-template-columns: 1fr; }
      .process-steps     { grid-template-columns: 1fr; }
      .cta-btns          { flex-direction: column; }
      .btn-white,
      .btn-ghost         { width: 100%; text-align: center; }
    }

/* ============================================================
   WORDPRESS DEFAULT CONTENT STYLES
   Used by page.php, single.php and index.php for any content
   that is not built with Elementor (regular WP pages/posts,
   blog archive, search results, etc.)
============================================================ */

.autoflow-page-header,
.autoflow-archive {
  max-width: 900px;
  margin: 0 auto;
  padding: 70px 30px;
}

.autoflow-page-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 30px 80px;
}

.autoflow-page-title {
  font-size: 44px;
  font-weight: 700;
  color: var(--black);
  letter-spacing: -1.5px;
  line-height: 1.15;
  margin-bottom: 10px;
}

.autoflow-page-content p,
.autoflow-archive p {
  font-size: 18px;
  line-height: 1.8;
  color: var(--gray-600);
  margin-bottom: 20px;
}

.autoflow-page-content h2,
.autoflow-page-content h3,
.autoflow-page-content h4 {
  color: var(--black);
  font-weight: 700;
  letter-spacing: -0.5px;
  margin: 35px 0 15px;
}

.autoflow-page-content h2 { font-size: 32px; }
.autoflow-page-content h3 { font-size: 24px; }
.autoflow-page-content h4 { font-size: 20px; }

.autoflow-page-content ul,
.autoflow-page-content ol {
  margin: 0 0 20px 22px;
  color: var(--gray-600);
  font-size: 18px;
  line-height: 1.8;
}

.autoflow-page-content a {
  color: var(--black);
  text-decoration: underline;
}

.autoflow-page-content img {
  border-radius: var(--radius-md);
  margin: 20px 0;
}

.autoflow-post-thumb-single img {
  border-radius: var(--radius-md);
  width: 100%;
  margin-bottom: 10px;
}

.autoflow-post-meta {
  font-size: 15px;
  color: var(--gray-400);
  margin-bottom: 10px;
}

/* Blog archive cards */
.autoflow-post-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px 60px;
}

.autoflow-post-card {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 30px;
  background: var(--white);
}

.autoflow-post-thumb {
  display: block;
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 18px;
}

.autoflow-post-thumb img { width: 100%; }

.autoflow-post-title {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}

.autoflow-post-title a { color: var(--black); }
.autoflow-post-title a:hover { opacity: 0.7; }

.autoflow-post-excerpt {
  font-size: 16px;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 12px;
}

.autoflow-post-readmore {
  font-size: 15px;
  font-weight: 600;
  color: var(--black);
}

.autoflow-pagination {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px 80px;
  display: flex;
  gap: 10px;
}

.autoflow-pagination a,
.autoflow-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 500;
  color: var(--gray-600);
}

.autoflow-pagination .current {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

@media (max-width: 900px) {
  .autoflow-post-list { grid-template-columns: 1fr; padding: 0 30px 60px; }
  .autoflow-page-title { font-size: 36px; }
}
