* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #ee3124;
    --primary-dark: #c92117;
    --dark: #111827;
    --dark-2: #1f2937;
    --text: #374151;
    --muted: #6b7280;
    --light: #f8fafc;
    --white: #ffffff;
    --border: #e5e7eb;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --radius: 16px;
    --transition: all 0.25s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.7;
    font-size: 16px;
}

main {
    margin-bottom: 0;
    padding-bottom: 0;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: min(1200px, calc(100% - 32px));
    margin: 0 auto;
}

/* TOPBAR */

.topbar {
    background: var(--dark);
    color: var(--white);
    font-size: 14px;
}

.topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    gap: 16px;
}

.topbar-left {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}

.topbar-right {
    display: flex;
    align-items: center;
}

.topbar-btn {
    background: var(--primary);
    color: var(--white);
    padding: 8px 14px;
    border-radius: 999px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.topbar-btn:hover {
    background: var(--primary-dark);
}

/* HEADER */

.site-header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 82px;
    gap: 24px;
    position: relative;
}

.brand {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.site-logo {
    height: 28px;
    width: auto;
    object-fit: contain;
    display: block;
}

.main-nav {
    margin-left: auto;
    transition: all 0.3s ease;
}

.main-nav ul {
    display: flex;
    align-items: center;
    gap: 28px;
}

.main-nav a {
    position: relative;
    font-weight: 600;
    color: var(--dark);
    padding: 6px 0;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--primary);
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.menu-toggle span {
    display: block;
    width: 26px;
    height: 3px;
    background: var(--dark);
    margin: 5px 0;
    border-radius: 999px;
    transition: var(--transition);
}

/* HERO */

.hero {
    padding: 90px 0;
    background:
        radial-gradient(circle at top right, rgba(238, 49, 36, 0.10), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
    align-items: center;
}

.section-badge {
    display: inline-block;
    background: rgba(238, 49, 36, 0.10);
    color: var(--primary);
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 16px;
}

.hero-content h1,
.page-hero h1 {
    font-size: 48px;
    line-height: 1.15;
    color: var(--dark);
    margin-bottom: 16px;
    font-weight: 800;
}

.hero-content p,
.page-hero p {
    font-size: 18px;
    color: var(--muted);
    max-width: 760px;
    margin-bottom: 24px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.hero-visual {
    display: flex;
    justify-content: center;
}

.hero-card {
    width: 100%;
    max-width: 420px;
    background: var(--dark);
    color: var(--white);
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 30px 50px rgba(17, 24, 39, 0.25);
    position: relative;
    overflow: hidden;
}

.hero-card::before {
    content: "";
    position: absolute;
    top: -60px;
    right: -60px;
    width: 160px;
    height: 160px;
    background: rgba(238, 49, 36, 0.22);
    border-radius: 50%;
}

.hero-card-top {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
}

.hero-metric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    position: relative;
    z-index: 2;
    gap: 16px;
}

.hero-metric strong {
    font-size: 24px;
    color: var(--white);
    text-align: right;
}

/* PRODUCT HERO */

.hero-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-left {
    flex: 1;
}

.hero-right {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-product-img {
    max-width: 320px;
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.2));
    transition: transform 0.3s ease;
}

.hero-product-img:hover {
    transform: scale(1.05);
}

.hero-specs {
    display: flex;
    gap: 15px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.hero-specs div {
    background: rgba(255, 255, 255, 0.08);
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 14px;
}

/* BUTTON */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 24px;
    border-radius: 12px;
    font-weight: 700;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-light {
    background: var(--white);
    color: var(--primary);
}

.btn-light:hover {
    transform: translateY(-2px);
}

.btn.full {
    width: 100%;
}

/* SECTIONS */

.section {
    padding: 90px 0;
}

.section-dark {
    background: var(--dark);
    color: var(--white);
}

.section-light {
    background: #f8fafc;
}

.section-heading {
    margin-bottom: 42px;
}

.section-heading.compact {
    margin-bottom: 26px;
}

.section-heading.center {
    text-align: center;
}

.section-heading.light h2,
.section-heading.light p {
    color: var(--white);
}

.section-heading h2 {
    font-size: 36px;
    color: var(--dark);
    margin-bottom: 10px;
    line-height: 1.25;
}

.section-heading p {
    color: var(--muted);
    max-width: 820px;
    line-height: 1.8;
    font-size: 17px;
}

.section-heading.center p {
    margin-left: auto;
    margin-right: auto;
}

/* GRID */

.card-grid {
    display: grid;
    gap: 24px;
}

.card-grid.two {
    grid-template-columns: repeat(2, 1fr);
}

.card-grid.three {
    grid-template-columns: repeat(3, 1fr);
}

.card-grid.five {
    grid-template-columns: repeat(5, 1fr);
}

.feature-grid {
    display: grid;
    gap: 24px;
}

.feature-grid.three {
    grid-template-columns: repeat(3, 1fr);
}

.feature-grid.four {
    grid-template-columns: repeat(4, 1fr);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.stats-section {
    padding: 0 0 90px;
}

/* BOXES */

.service-card,
.feature-box,
.about-box,
.contact-box,
.contact-form-box,
.stat-box,
.content-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.service-card:hover,
.feature-box:hover,
.content-card:hover {
    transform: translateY(-4px);
}

.service-card h3,
.feature-box h3,
.about-box h3,
.content-card h3 {
    color: var(--dark);
    margin-bottom: 10px;
    font-size: 22px;
    line-height: 1.35;
}

.about-box h2 {
    color: var(--dark);
    margin-bottom: 12px;
    font-size: 28px;
    line-height: 1.3;
}

.service-card p,
.feature-box p,
.about-box p,
.contact-box p,
.content-card p {
    color: var(--muted);
    line-height: 1.8;
    font-size: 16px;
}

.tight-card p {
    margin-bottom: 0;
    line-height: 1.75;
}

.stat-box {
    text-align: center;
}

.stat-box strong {
    display: block;
    font-size: 38px;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-box span {
    color: var(--muted);
    font-weight: 600;
}

/* CTA BAND */

.cta-band {
    background: linear-gradient(135deg, var(--primary), #991b1b);
    color: var(--white);
    padding: 42px 0;
    margin: 0;
    border-bottom: 0;
}

.cta-band-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 0;
}

.cta-content {
    flex: 1;
}

.cta-content h2 {
    font-size: 24px;
    line-height: 1.25;
    margin-bottom: 8px;
    font-weight: 700;
    color: var(--white);
}

.cta-content p {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.90);
    margin: 0;
}

.cta-btn {
    white-space: nowrap;
    min-width: 160px;
    flex-shrink: 0;
}

.cta-band-tight,
.product-page .cta-band:last-child {
    margin-bottom: 0;
}

/* PAGE HERO */

.page-hero {
    padding: 90px 0 50px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafb 100%);
}

.page-hero.small h1 {
    font-size: 42px;
}

/* ABOUT / CONTACT */

.about-grid,
.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 28px;
    align-items: start;
}

.about-box ul {
    margin-top: 12px;
    padding-left: 18px;
}

.about-box ul li {
    list-style: disc;
    margin-bottom: 10px;
    color: var(--muted);
}

.contact-box,
.contact-form-box {
    height: fit-content;
}

.contact-box {
    margin-bottom: 12px;
}

.contact-form {
    display: grid;
    gap: 16px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 14px 16px;
    font-family: inherit;
    font-size: 15px;
    outline: none;
    transition: var(--transition);
    background: var(--white);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(238, 49, 36, 0.08);
}

.form-alert {
    margin-bottom: 18px;
    padding: 14px 16px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
    border: 1px solid transparent;
}

.form-alert.success {
    background: #ecfdf3;
    color: #166534;
    border-color: #bbf7d0;
}

.form-alert.error {
    background: #fef2f2;
    color: #991b1b;
    border-color: #fecaca;
}

/* MAP */

.map-section {
    padding-top: 0;
}

.map-box {
    margin-top: 32px;
    padding-top: 4px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    background: var(--white);
}

.map-box iframe {
    display: block;
    width: 100%;
}

/* GENERIC TABLES */

.compare-table,
.spec-table,
.data-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    margin-top: 20px;
}

.compare-table th,
.compare-table td,
.spec-table th,
.spec-table td,
.data-table th,
.data-table td {
    border: 1px solid var(--border);
    padding: 14px 16px;
    text-align: left;
    vertical-align: top;
    line-height: 1.7;
}

.compare-table th,
.spec-table th,
.data-table thead th {
    background: #f3f4f6;
    font-weight: 700;
    color: var(--dark);
}

.spec-table tr:nth-child(even) td,
.data-table tbody tr:nth-child(even) td {
    background: #fcfcfd;
}

.table-wrap {
    overflow-x: auto;
    margin-top: 16px;
}

.note-box {
    margin-top: 14px;
    padding: 14px 16px;
    border-radius: 12px;
    background: #fff7ed;
    border: 1px solid #fed7aa;
    color: #9a3412;
    font-size: 14px;
    line-height: 1.6;
}

/* DETAIL LIST */

.detail-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.detail-list li {
    margin-bottom: 10px;
    line-height: 1.7;
    color: var(--text);
}

/* CONTENT BLOCK */

.content-block {
    margin-top: 28px;
    padding: 24px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.content-block h3 {
    margin-bottom: 14px;
    color: var(--dark);
}

.download-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 22px;
}

/* GENERIC PRODUCT CARD */

.product-card {
    text-decoration: none;
    color: inherit;
    display: block;
}

.card-inner {
    padding: 24px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid var(--border);
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
}

.product-card:hover .card-inner {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border-color: var(--primary);
}

.card-inner h3 {
    margin-bottom: 10px;
    font-size: 20px;
    color: var(--dark);
}

.card-inner p {
    color: var(--muted);
    line-height: 1.75;
    font-size: 15px;
}

.card-inner ul {
    margin: 15px 0;
    padding-left: 0;
    list-style: none;
}

.card-inner li {
    margin-bottom: 6px;
    font-size: 14px;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    font-weight: 700;
    color: var(--primary);
    transition: var(--transition);
}

/* FORTIGATE LISTING */

.fortigate-list-section .section-heading.compact {
    margin-bottom: 34px;
}

.fortigate-list-section .section-heading.compact p {
    max-width: 760px;
    margin: 0 auto;
    line-height: 1.8;
}

.fortigate-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    align-items: stretch;
}

.fortigate-product-card {
    display: block;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

.fortigate-card-inner {
    height: 100%;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 28px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.fortigate-product-card:hover .fortigate-card-inner {
    transform: translateY(-6px);
    border-color: rgba(238, 49, 36, 0.35);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.10);
}

.fortigate-card-top h3 {
    margin: 10px 0;
    font-size: 30px;
    line-height: 1.2;
    color: var(--dark);
}

.fortigate-card-top p {
    margin: 0;
    color: var(--muted);
    line-height: 1.8;
    font-size: 16px;
}

.fortigate-card-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(238, 49, 36, 0.10);
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.2px;
}

.fortigate-spec-list {
    display: grid;
    gap: 12px;
}

.fortigate-spec-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: #f9fafb;
}

.fortigate-spec-item span {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.5;
}

.fortigate-spec-item strong {
    color: var(--dark);
    font-size: 15px;
    line-height: 1.5;
    text-align: right;
}

.fortigate-card-footer {
    margin-top: auto;
    padding-top: 4px;
}

.fortigate-product-card:hover .card-link {
    transform: translateX(4px);
}

.fortigate-cta-section {
    background: #f8fafc;
}

.fortigate-cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 34px;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.fortigate-cta-content {
    max-width: 760px;
}

.fortigate-cta-content h2 {
    margin: 10px 0 12px;
    font-size: 36px;
    line-height: 1.2;
    color: var(--dark);
}

.fortigate-cta-content p {
    margin: 0;
    color: var(--muted);
    line-height: 1.8;
    font-size: 16px;
}

.fortigate-cta-action {
    flex-shrink: 0;
}

/* ÜRÜNLER SAYFASI */

.product-list-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 30px;
}

.product-list-grid .product-card {
    padding: 24px;
    border-radius: 16px;
    border: 1px solid var(--border);
    background: #fff;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.product-list-grid .product-card:hover {
    transform: translateY(-6px);
    border-color: var(--primary);
}

.product-list-grid h3 {
    margin-bottom: 8px;
    font-size: 20px;
    color: var(--dark);
}

.product-list-grid p {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.7;
}

/* PRODUCT DETAIL PAGE */

.product-page .page-hero p,
.product-page .section-heading p,
.product-page .content-card p,
.product-page .feature-box p,
.product-page .info-note {
    font-size: 17px;
    line-height: 1.8;
}

.product-page .page-hero h1 {
    font-size: 44px;
    line-height: 1.18;
}

.product-page .section-heading h2 {
    font-size: 36px;
    line-height: 1.25;
    margin-bottom: 10px;
}

.product-page .content-grid.two-col-text {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.product-page .table-card {
    margin-top: 18px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
}

.product-page .table-responsive {
    overflow-x: auto;
}

.product-page .product-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
}

.product-page .product-table th,
.product-page .product-table td {
    border: 1px solid var(--border);
    padding: 14px 16px;
    text-align: left;
    vertical-align: top;
    font-size: 15px;
    line-height: 1.7;
}

.product-page .product-table thead th {
    background: #f3f4f6;
    color: var(--dark);
    font-weight: 700;
}

.product-page .product-table tbody tr:nth-child(even) td {
    background: #fafafa;
}

.product-page .info-note {
    margin-top: 16px;
    padding: 15px 16px;
    border: 1px solid #fed7aa;
    border-radius: 12px;
    background: #fff7ed;
    color: #9a3412;
}

.product-page .download-actions {
    margin-top: 24px;
}

.product-page .download-actions .btn {
    min-width: 150px;
}

/* COMPARE */

.compare-inline {
    margin-top: 18px;
}

.compare-inline-center {
    text-align: center;
}

.compare-inline a {
    display: inline-block;
    font-weight: 600;
    font-size: 14px;
    color: var(--primary);
    padding: 10px 16px;
    border: 1px solid rgba(238, 49, 36, 0.18);
    border-radius: 999px;
    background: rgba(238, 49, 36, 0.04);
    transition: var(--transition);
}

.compare-inline a:hover {
    background: rgba(238, 49, 36, 0.08);
    border-color: rgba(238, 49, 36, 0.3);
}

.compare-inline .btn {
    min-width: 220px;
}

/* COMPANY INFO */

.company-info-box {
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.company-info-box h3 {
    margin: 0 0 20px;
    font-size: 24px;
    line-height: 1.4;
    color: #111827;
}

.company-info-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.company-info-list li {
    padding: 12px 0;
    border-bottom: 1px solid #eef2f7;
    font-size: 15px;
    line-height: 1.7;
    color: #374151;
}

.company-info-list li:last-child {
    border-bottom: none;
}

.company-info-list strong {
    color: #111827;
    min-width: 170px;
    display: inline-block;
}

.company-info-list a {
    color: #b91c1c;
    text-decoration: none;
}

.company-info-list a:hover {
    text-decoration: underline;
}

/* FOOTER */

.site-footer,
footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.86);
    padding-top: 70px;
    margin-top: 0;
}

.site-footer a {
    color: #ffffff;
    text-decoration: none;
}

.site-footer a:hover,
.footer-links a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    gap: 32px;
    padding: 50px 0 30px;
}

.site-footer h4,
.footer-grid h4 {
    color: var(--white);
    margin: 0 0 14px;
    font-size: 18px;
    font-weight: 600;
}

.footer-grid p,
.footer-grid li {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.88);
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    padding: 18px 0 22px;
}

.footer-bottom-inner {
    max-width: 980px;
    margin: 0 auto;
    text-align: center;
}

.footer-copy {
    margin: 0 0 8px;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.92);
}

.footer-disclaimer {
    margin: 0;
    font-size: 13px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.72);
}

/* RESPONSIVE */

@media (max-width: 1200px) {
    .card-grid.five {
        grid-template-columns: repeat(3, 1fr);
    }

    .feature-grid.four {
        grid-template-columns: repeat(2, 1fr);
    }

    .fortigate-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 992px) {
    .hero-grid,
    .about-grid,
    .contact-grid,
    .hero-flex,
    .cta-band-inner,
    .fortigate-cta-box {
        grid-template-columns: 1fr;
        flex-direction: column;
    }

    .hero,
    .section,
    .page-hero {
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .hero-content h1,
    .page-hero h1 {
        font-size: 38px;
    }

    .section-heading h2,
    .product-page .section-heading h2,
    .fortigate-cta-content h2 {
        font-size: 30px;
    }

    .stats-grid,
    .footer-grid,
    .product-list-grid,
    .card-grid.three {
        grid-template-columns: repeat(2, 1fr);
    }

    .card-grid.two,
    .feature-grid.three,
    .product-page .content-grid.two-col-text {
        grid-template-columns: 1fr;
    }

    .cta-btn,
    .fortigate-cta-action {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        border-top: 1px solid #eee;
        display: none;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    }

    .main-nav.active {
        display: flex;
    }

    .main-nav ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        width: 100%;
    }

    .main-nav li,
    .main-nav a {
        width: 100%;
    }

    .topbar-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-content h1,
    .page-hero h1,
    .page-hero.small h1,
    .product-page .page-hero h1 {
        font-size: 32px;
    }

    .hero-content p,
    .page-hero p,
    .product-page .page-hero p {
        font-size: 16px;
    }

    .section-heading h2,
    .product-page .section-heading h2,
    .fortigate-cta-content h2,
    .about-box h2 {
        font-size: 26px;
    }

    .hero-actions,
    .download-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .btn,
    .hero-actions .btn,
    .download-actions .btn {
        width: 100%;
    }

    .stats-grid,
    .footer-grid,
    .card-grid.two,
    .card-grid.three,
    .card-grid.five,
    .feature-grid.three,
    .feature-grid.four,
    .product-list-grid,
    .fortigate-card-grid {
        grid-template-columns: 1fr;
    }

    .hero-card,
    .fortigate-card-inner,
    .service-card,
    .feature-box,
    .about-box,
    .contact-box,
    .contact-form-box,
    .stat-box,
    .content-card,
    .company-info-box {
        padding: 22px 18px;
    }

    .company-info-box h3 {
        font-size: 20px;
    }

    .company-info-list li {
        font-size: 14px;
        padding: 10px 0;
    }

    .company-info-list strong {
        display: block;
        min-width: auto;
        margin-bottom: 4px;
    }

    .footer-copy,
    .footer-disclaimer {
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .container {
        width: min(100% - 24px, 1200px);
    }

    .hero,
    .section,
    .page-hero {
        padding-top: 56px;
        padding-bottom: 56px;
    }

    .cta-band {
        padding: 32px 0;
    }

    .cta-content h2 {
        font-size: 22px;
    }

    .hero-metric {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-metric strong,
    .fortigate-spec-item strong {
        text-align: left;
    }

    .fortigate-spec-item {
        flex-direction: column;
        align-items: flex-start;
    }
}