    :root {
      --navy: #0a0f1e;
      --navy2: #0d1526;
      --blue: #1a3a6e;
      --accent: #2f7fd4;
      --accent2: #4db6f7;
      --light: #e8f0ff;
      --muted: #8fa8cc;
      --white: #ffffff;
      --border: rgba(47,127,212,0.2);
      --glow: 0 0 24px rgba(47,127,212,0.3);
    }

    * { margin:0; padding:0; box-sizing:border-box; }

    body {
      background: var(--navy);
      color: var(--light);
      font-family: 'Exo 2', sans-serif;
      font-size: 15px;
      line-height: 1.7;
      min-height: 100vh;
    }

    /* ── NAV ── */
    nav {
      position: fixed; top:0; left:0; right:0; z-index:999;
      background: rgba(10,15,30,0.92);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border);
      display: flex; align-items: center;
      padding: 0 40px; height: 68px;
    }

    .nav-logo {
      display: flex; align-items: center; gap: 12px;
      cursor: pointer; text-decoration: none;
    }

    .gear-svg { width:42px; height:42px; animation: spin 12s linear infinite; }
    @keyframes spin { to { transform: rotate(360deg); } }

    .nav-brand {
      font-family: 'Rajdhani', sans-serif;
      font-size: 20px; font-weight: 700;
      color: var(--white); letter-spacing: 1px;
    }
    .nav-brand span { color: var(--accent2); }

    .nav-links {
      margin-left: auto;
      display: flex; gap: 6px;
    }

    .nav-links a {
      background: none; border: none;
      color: var(--muted);
      font-family: 'Rajdhani', sans-serif;
      font-size: 14px; font-weight: 600;
      letter-spacing: 1px; text-transform: uppercase;
      padding: 8px 16px; border-radius: 4px;
      cursor: pointer; transition: all .25s;
      text-decoration: none;
    }
    .nav-links a:hover,
    .nav-links a.active {
      color: var(--accent2);
      background: rgba(47,127,212,0.1);
    }

    /* hamburger */
    .hamburger {
      display: none; flex-direction: column; gap: 5px;
      background: none; border: none; cursor: pointer;
      margin-left: auto; padding: 8px;
    }
    .hamburger span {
      display: block; width: 24px; height: 2px;
      background: var(--accent2); border-radius: 2px;
      transition: all .3s;
    }

    /* ── PAGES ── */
    .page { display: none; padding-top: 68px; min-height: 100vh; }
    .page.active { display: block; }

    /* ── HERO ── */
    .hero {
      position: relative; overflow: hidden;
      min-height: calc(100vh - 68px);
      display: flex; align-items: center;
      padding: 80px 80px 60px;
    }

    .hero-bg {
      position: absolute; inset: 0; z-index: 0;
      background:
        radial-gradient(ellipse 60% 70% at 70% 50%, rgba(26,58,110,0.5) 0%, transparent 70%),
        radial-gradient(ellipse 40% 50% at 20% 80%, rgba(47,127,212,0.15) 0%, transparent 60%),
        linear-gradient(135deg, #0a0f1e 0%, #0d1930 100%);
    }

    .hero-grid {
      position: absolute; inset: 0; z-index: 0;
      background-image:
        linear-gradient(rgba(47,127,212,0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(47,127,212,0.06) 1px, transparent 1px);
      background-size: 50px 50px;
      mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
    }

    .hero-content { position: relative; z-index: 1; max-width: 640px; }

    .hero-badge {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(47,127,212,0.12);
      border: 1px solid rgba(47,127,212,0.3);
      border-radius: 20px; padding: 6px 16px;
      font-size: 12px; font-weight: 600; letter-spacing: 2px;
      text-transform: uppercase; color: var(--accent2);
      margin-bottom: 28px;
      animation: fadeUp .8s ease both;
    }
    .hero-badge::before {
      content:''; width:8px; height:8px;
      background: var(--accent2); border-radius: 50%;
      box-shadow: 0 0 8px var(--accent2);
      animation: pulse 2s ease-in-out infinite;
    }
    @keyframes pulse { 0%,100%{opacity:1}50%{opacity:.4} }

    .hero h1 {
      font-family: 'Rajdhani', sans-serif;
      font-size: clamp(36px, 5vw, 64px);
      font-weight: 700; line-height: 1.1;
      color: var(--white);
      animation: fadeUp .8s .15s ease both;
    }
    .hero h1 em { font-style:normal; color: var(--accent2); }

    .hero p {
      margin-top: 20px; font-size: 17px;
      color: var(--muted); max-width: 520px;
      animation: fadeUp .8s .3s ease both;
    }

    .hero-btns {
      margin-top: 40px; display: flex; gap: 14px; flex-wrap: wrap;
      animation: fadeUp .8s .45s ease both;
    }

    .btn-primary {
      background: var(--accent); color: var(--white);
      border: none; padding: 14px 32px;
      border-radius: 6px; font-family: 'Rajdhani', sans-serif;
      font-size: 15px; font-weight: 700; letter-spacing: 1px;
      text-transform: uppercase; cursor: pointer;
      transition: all .25s;
      box-shadow: 0 4px 20px rgba(47,127,212,0.4);
      text-decoration: none;
    }
    .btn-primary:hover {
      background: var(--accent2);
      box-shadow: 0 6px 28px rgba(77,182,247,0.5);
      transform: translateY(-2px);
    }

    .btn-outline {
      background: none; color: var(--accent2);
      border: 1px solid rgba(47,127,212,0.5);
      padding: 14px 32px; border-radius: 6px;
      font-family: 'Rajdhani', sans-serif;
      font-size: 15px; font-weight: 700; letter-spacing: 1px;
      text-transform: uppercase; cursor: pointer;
      transition: all .25s;
      text-decoration: none;
    }
    .btn-outline:hover {
      background: rgba(47,127,212,0.1);
      border-color: var(--accent2);
      transform: translateY(-2px);
    }

    .hero-stats {
      position: relative; z-index: 1;
      margin-left: auto; display: flex; gap: 32px;
      animation: fadeUp .8s .6s ease both;
    }
    .stat {
      text-align: center;
      background: rgba(26,58,110,0.3);
      border: 1px solid var(--border);
      border-radius: 12px; padding: 28px 32px;
      backdrop-filter: blur(8px);
    }
    .stat-num {
      font-family: 'Rajdhani', sans-serif;
      font-size: 44px; font-weight: 700;
      color: var(--accent2); line-height: 1;
    }
    .stat-label {
      font-size: 12px; color: var(--muted);
      letter-spacing: 1px; text-transform: uppercase;
      margin-top: 6px;
    }

    @keyframes fadeUp {
      from { opacity:0; transform: translateY(20px); }
      to   { opacity:1; transform: translateY(0); }
    }

    /* ── SERVICES STRIP (ana sayfa) ── */
    .services-strip {
      padding: 80px;
      background: linear-gradient(180deg, var(--navy) 0%, var(--navy2) 100%);
    }
    .section-title {
      font-family: 'Rajdhani', sans-serif;
      font-size: 36px; font-weight: 700;
      color: var(--white); margin-bottom: 8px;
    }
    .section-title span { color: var(--accent2); }
    .section-sub {
      color: var(--muted); font-size: 15px;
      margin-bottom: 48px; max-width: 500px;
    }

    .cards-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 24px;
    }

    .card {
      background: rgba(13,21,38,0.8);
      border: 1px solid var(--border);
      border-radius: 12px; padding: 32px;
      transition: all .3s; position: relative; overflow: hidden;
    }
    .card::before {
      content:''; position:absolute; inset:0;
      background: linear-gradient(135deg, rgba(47,127,212,0.06) 0%, transparent 60%);
      opacity:0; transition: opacity .3s;
    }
    .card:hover { border-color: var(--accent); transform: translateY(-4px); box-shadow: var(--glow); }
    .card:hover::before { opacity:1; }

    .card-icon {
      width: 52px; height: 52px;
      background: rgba(47,127,212,0.12);
      border: 1px solid rgba(47,127,212,0.25);
      border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 20px; font-size: 22px;
    }
    .card h3 {
      font-family: 'Rajdhani', sans-serif;
      font-size: 20px; font-weight: 700;
      color: var(--white); margin-bottom: 10px;
    }
    .card p { color: var(--muted); font-size: 14px; }

    /* ── WHY US (ana sayfa) ── */
    .why-section {
      padding: 80px;
      display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
      align-items: center;
    }
    .why-text .section-title { margin-bottom: 20px; }
    .why-list { list-style: none; margin-top: 28px; display: flex; flex-direction: column; gap: 16px; }
    .why-list li {
      display: flex; align-items: flex-start; gap: 14px;
      padding: 16px 20px;
      background: rgba(26,58,110,0.2);
      border: 1px solid var(--border); border-radius: 8px;
    }
    .why-check {
      width: 22px; height: 22px; border-radius: 50%;
      background: var(--accent); display: flex; align-items: center;
      justify-content: center; flex-shrink: 0; font-size: 11px; margin-top: 2px;
    }
    .why-right {
      display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
    }
    .metric-card {
      background: rgba(26,58,110,0.25);
      border: 1px solid var(--border); border-radius: 12px;
      padding: 28px; text-align: center;
    }
    .metric-num {
      font-family: 'Rajdhani', sans-serif;
      font-size: 40px; font-weight: 700; color: var(--accent2);
    }
    .metric-label { font-size: 13px; color: var(--muted); margin-top: 4px; }

    /* ── CTA BAND ── */
    .cta-band {
      margin: 0 80px 80px;
      background: linear-gradient(135deg, var(--blue) 0%, rgba(47,127,212,0.3) 100%);
      border: 1px solid rgba(47,127,212,0.4);
      border-radius: 16px; padding: 56px 64px;
      display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 24px;
    }
    .cta-band h2 {
      font-family: 'Rajdhani', sans-serif;
      font-size: 30px; font-weight: 700; color: var(--white);
    }
    .cta-band p { color: var(--muted); margin-top: 6px; }

    /* ── ABOUT PAGE ── */
    .page-hero {
      padding: 80px 80px 60px;
      background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 100%);
      border-bottom: 1px solid var(--border);
      position: relative; overflow: hidden;
    }
    .page-hero::before {
      content:''; position:absolute;
      right: -100px; top: -100px;
      width: 500px; height: 500px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(47,127,212,0.1) 0%, transparent 70%);
    }
    .page-hero h1 {
      font-family: 'Rajdhani', sans-serif;
      font-size: clamp(32px, 4vw, 52px); font-weight: 700;
      color: var(--white); position: relative;
    }
    .page-hero h1 span { color: var(--accent2); }
    .page-hero p { color: var(--muted); margin-top: 14px; font-size: 16px; max-width: 600px; position: relative; }

    .breadcrumb {
      font-size: 13px; color: var(--muted);
      margin-bottom: 20px; position: relative;
    }
    .breadcrumb span { color: var(--accent2); }

    .about-body { padding: 80px; }
    .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }

    .about-intro h2 {
      font-family: 'Rajdhani', sans-serif;
      font-size: 28px; font-weight: 700; color: var(--white);
      margin-bottom: 16px;
    }
    .about-intro p { color: var(--muted); margin-bottom: 16px; }

    .values-grid {
      display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
      margin-top: 40px;
    }
    .value-card {
      background: rgba(26,58,110,0.2);
      border: 1px solid var(--border); border-radius: 10px;
      padding: 22px;
    }
    .value-card .icon { font-size: 24px; margin-bottom: 10px; }
    .value-card h4 {
      font-family: 'Rajdhani', sans-serif;
      font-size: 17px; font-weight: 700; color: var(--white);
      margin-bottom: 6px;
    }
    .value-card p { font-size: 13px; color: var(--muted); }

    .about-sidebar { display: flex; flex-direction: column; gap: 20px; }
    .info-block {
      background: rgba(13,21,38,0.8);
      border: 1px solid var(--border); border-radius: 12px;
      padding: 28px;
    }
    .info-block h3 {
      font-family: 'Rajdhani', sans-serif;
      font-size: 18px; font-weight: 700; color: var(--white);
      margin-bottom: 16px; padding-bottom: 12px;
      border-bottom: 1px solid var(--border);
    }
    .info-row {
      display: flex; justify-content: space-between; align-items: center;
      padding: 10px 0; border-bottom: 1px solid rgba(47,127,212,0.08);
      font-size: 14px;
    }
    .info-row:last-child { border-bottom: none; }
    .info-row .label { color: var(--muted); }
    .info-row .val { color: var(--white); font-weight: 500; }

    /* ── SERVICES PAGE ── */
    .services-body { padding: 80px; }
    .services-main-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 28px; margin-top: 0;
    }
    .service-card {
      background: rgba(13,21,38,0.8);
      border: 1px solid var(--border); border-radius: 12px;
      padding: 36px; transition: all .3s; position: relative; overflow: hidden;
    }
    .service-card::after {
      content:''; position:absolute;
      bottom:0; left:0; right:0; height: 3px;
      background: linear-gradient(90deg, var(--accent), var(--accent2));
      transform: scaleX(0); transition: transform .3s;
    }
    .service-card:hover { border-color: var(--accent); transform: translateY(-4px); box-shadow: var(--glow); }
    .service-card:hover::after { transform: scaleX(1); }
    .service-card .icon { font-size: 32px; margin-bottom: 20px; }
    .service-card h3 {
      font-family: 'Rajdhani', sans-serif;
      font-size: 22px; font-weight: 700; color: var(--white);
      margin-bottom: 12px;
    }
    .service-card p { color: var(--muted); font-size: 14px; margin-bottom: 20px; }
    .service-tags { display: flex; flex-wrap: wrap; gap: 8px; }
    .tag {
      background: rgba(47,127,212,0.12);
      border: 1px solid rgba(47,127,212,0.25);
      border-radius: 4px; padding: 4px 12px;
      font-size: 12px; color: var(--accent2);
      font-family: 'Rajdhani', sans-serif; font-weight: 600;
    }

    /* process steps */
    .process-section { padding: 0 80px 80px; }
    .process-section .section-title { margin-bottom: 8px; }
    .process-section .section-sub { margin-bottom: 40px; }
    .steps { display: flex; flex-direction: column; gap: 0; }
    .step {
      display: flex; align-items: flex-start; gap: 28px;
      padding: 28px 0; border-bottom: 1px solid var(--border);
      position: relative;
    }
    .step:last-child { border-bottom: none; }
    .step-num {
      font-family: 'Rajdhani', sans-serif;
      font-size: 48px; font-weight: 700;
      color: rgba(47,127,212,0.2); flex-shrink: 0;
      line-height: 1; width: 60px;
    }
    .step-content h4 {
      font-family: 'Rajdhani', sans-serif;
      font-size: 20px; font-weight: 700;
      color: var(--white); margin-bottom: 6px;
    }
    .step-content p { color: var(--muted); font-size: 14px; }

    /* ── PRODUCTS PAGE ── */
    .products-body { padding: 80px; }
    .products-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 28px;
    }
    .product-card {
      background: rgba(13,21,38,0.8);
      border: 1px solid var(--border); border-radius: 12px;
      overflow: hidden; transition: all .3s;
    }
    .product-card:hover { border-color: var(--accent); box-shadow: var(--glow); transform: translateY(-4px); }
    .product-img {
      height: 160px;
      background: linear-gradient(135deg, var(--blue) 0%, rgba(47,127,212,0.4) 100%);
      display: flex; align-items: center; justify-content: center;
      font-size: 52px; position: relative; overflow: hidden;
    }
    .product-img::before {
      content:''; position:absolute; inset:0;
      background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%232f7fd4' fill-opacity='0.1'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
    }
    .product-body { padding: 28px; }
    .product-body h3 {
      font-family: 'Rajdhani', sans-serif;
      font-size: 20px; font-weight: 700;
      color: var(--white); margin-bottom: 10px;
    }
    .product-body p { color: var(--muted); font-size: 14px; margin-bottom: 18px; }
    .product-features { list-style: none; display: flex; flex-direction: column; gap: 8px; }
    .product-features li {
      display: flex; align-items: center; gap: 8px;
      font-size: 13px; color: var(--muted);
    }
    .product-features li::before {
      content:'▸'; color: var(--accent2); flex-shrink: 0;
    }

    /* ── CONTACT PAGE ── */
    .contact-body { padding: 80px; display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px; }

    .contact-info { display: flex; flex-direction: column; gap: 24px; }
    .contact-item {
      display: flex; align-items: flex-start; gap: 16px;
      padding: 24px;
      background: rgba(13,21,38,0.8);
      border: 1px solid var(--border); border-radius: 12px;
    }
    .contact-icon {
      width: 46px; height: 46px; flex-shrink: 0;
      background: rgba(47,127,212,0.12);
      border: 1px solid rgba(47,127,212,0.25);
      border-radius: 10px; display: flex;
      align-items: center; justify-content: center; font-size: 20px;
    }
    .contact-item h4 {
      font-family: 'Rajdhani', sans-serif;
      font-size: 16px; font-weight: 700;
      color: var(--white); margin-bottom: 4px;
    }
    .contact-item p { color: var(--muted); font-size: 14px; }
    .contact-item a { color: var(--accent2); text-decoration: none; }
    .contact-item a:hover { text-decoration: underline; }

    .contact-form {
      background: rgba(13,21,38,0.8);
      border: 1px solid var(--border); border-radius: 12px;
      padding: 40px;
    }
    .contact-form h3 {
      font-family: 'Rajdhani', sans-serif;
      font-size: 24px; font-weight: 700;
      color: var(--white); margin-bottom: 28px;
    }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    .form-group { margin-bottom: 20px; }
    .form-group label {
      display: block; font-size: 12px; font-weight: 600;
      letter-spacing: 1px; text-transform: uppercase;
      color: var(--muted); margin-bottom: 8px;
    }
    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%;
      background: rgba(26,58,110,0.2);
      border: 1px solid var(--border);
      border-radius: 8px; padding: 12px 16px;
      color: var(--white); font-family: 'Exo 2', sans-serif;
      font-size: 14px; outline: none; transition: border .25s;
    }
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      border-color: var(--accent);
      box-shadow: 0 0 0 3px rgba(47,127,212,0.15);
    }
    .form-group textarea { resize: vertical; min-height: 120px; }
    .form-group select option { background: var(--navy2); }
    .form-submit { width: 100%; margin-top: 8px; }

    /* ── FOOTER ── */
    footer {
      background: var(--navy2);
      border-top: 1px solid var(--border);
      padding: 56px 80px 32px;
    }
    .footer-grid {
      display: grid; grid-template-columns: 2fr 1fr 1fr;
      gap: 48px; margin-bottom: 48px;
    }
    .footer-brand h3 {
      font-family: 'Rajdhani', sans-serif;
      font-size: 20px; font-weight: 700;
      color: var(--white); margin-bottom: 12px;
    }
    .footer-brand h3 span { color: var(--accent2); }
    .footer-brand p { color: var(--muted); font-size: 14px; max-width: 280px; line-height: 1.6; }
    .footer-col h4 {
      font-family: 'Rajdhani', sans-serif;
      font-size: 14px; font-weight: 700;
      letter-spacing: 1.5px; text-transform: uppercase;
      color: var(--white); margin-bottom: 16px;
    }
    .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
    .footer-col ul a { font-size: 14px; color: var(--muted); cursor: pointer; transition: color .2s; text-decoration: none;}
    .footer-col ul a:hover { color: var(--accent2); text-decoration: none;}
    .footer-bottom {
      border-top: 1px solid var(--border); padding-top: 28px;
      display: flex; justify-content: space-between; align-items: center;
      font-size: 13px; color: var(--muted); flex-wrap: wrap; gap: 12px;
    }

    .footer-col ul li { font-size: 14px; color: var(--muted); cursor: pointer; transition: color .2s;}
    .footer-col ul li:hover { color: var(--accent2);}

    /* ── RESPONSIVE ── */
    @media (max-width: 900px) {
      .hero { flex-direction: column; padding: 60px 28px; gap: 40px; }
      .hero-stats { margin-left: 0; width: 100%; justify-content: center; }
      .services-strip, .services-body, .products-body,
      .about-body, .process-section { padding: 56px 28px; }
      .why-section { padding: 56px 28px; grid-template-columns: 1fr; gap: 40px; }
      .about-grid { grid-template-columns: 1fr; }
      .contact-body { padding: 56px 28px; grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
      .page-hero { padding: 60px 28px 40px; }
      .cta-band { margin: 0 28px 60px; padding: 40px 28px; }
      nav { padding: 0 20px; }
      .nav-links { display: none; }
      .nav-links.open {
        display: flex; flex-direction: column;
        position: fixed; top: 68px; left: 0; right: 0;
        background: rgba(10,15,30,0.98); padding: 16px;
        border-bottom: 1px solid var(--border);
      }
      .hamburger { display: flex; }
      .form-row { grid-template-columns: 1fr; }
      .footer-bottom { flex-direction: column; text-align: center; }
    }

    @media (max-width: 540px) {
      .hero h1 { font-size: 30px; }
      .hero-stats { flex-direction: column; align-items: center; }
      .stat { width: 100%; }
      .values-grid { grid-template-columns: 1fr; }
      .why-right { grid-template-columns: 1fr 1fr; }
      .footer-grid { grid-template-columns: 1fr; }
    }

    .map-container {
  position: relative;
  width: 100%;
  padding-top: 16.25%; /* 16:9 oran */
  margin-top: 20px;
  border-radius: 12px;
  overflow: hidden;
}

.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.content-grid .card:first-child {
  grid-column: auto;
}

.hero-content-wrapper {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 60px;

  max-width: 1400px;
  margin-left: 0;        /* sola yasla */
  margin-right: auto;    /* sağ boşluk esnek */
  padding-left: 80px;    /* kenardan nefes aldır */
  padding-right: 40px;
}

.hero-content {
  flex: 1;
}

/* Görsel */
.hero-image img {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: contain;
  animation: fadeUp .8s .6s ease both;
}

/* Tablet */
@media (max-width: 1024px) {
  .hero-content-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;

    margin: 0 auto;
    padding: 0 20px;
  }

  .hero-btns {
    justify-content: center;
  }

  .hero-image {
    order: -1; /* görsel üste gelsin */
  }

  .content-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Mobil */
@media (max-width: 600px) {
  .hero {
    padding: 60px 20px;
  }

  .hero h1 {
    font-size: 28px;
  }

  .hero p {
    font-size: 15px;
  }

  .content-grid {
    grid-template-columns: 1fr;
  }
}

.full-btn {
  display: inline-block;
  width: 100%;
  text-align: center;
}