/* =========================================================
   FRIK – akkreditaltszallito.hu
   style.css
========================================================= */


/* =========================================================
   VARIABLES
========================================================= */

:root {
    --primary: #00a7c4;
    --primary-dark: #007f98;
    --primary-light: #eaf9fc;

    --navy: #16384b;
    --navy-dark: #0d2837;

    --text: #263842;
    --text-light: #687b85;

    --white: #ffffff;
    --background: #f5f8fa;
    --background-alt: #eef4f6;

    --border: #dce6ea;

    --shadow-sm: 0 6px 20px rgba(20, 55, 72, 0.06);
    --shadow-md: 0 18px 50px rgba(20, 55, 72, 0.10);
    --shadow-lg: 0 30px 80px rgba(20, 55, 72, 0.15);

    --radius-sm: 10px;
    --radius: 18px;
    --radius-lg: 28px;

    --container: 1320px;

    --transition: 0.25s ease;
}


/* =========================================================
   RESET
========================================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    margin: 0;
    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        Helvetica,
        Arial,
        sans-serif;

    color: var(--text);
    background: var(--white);
    line-height: 1.65;
    font-size: 17px;

    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}


/* =========================================================
   TYPOGRAPHY
========================================================= */

h1,
h2,
h3 {
    color: var(--navy);
    margin-top: 0;
    line-height: 1.12;
    letter-spacing: -0.035em;
}

h1 {
    font-size: clamp(44px, 5.2vw, 76px);
    font-weight: 750;
    margin-bottom: 28px;
}

h2 {
    font-size: clamp(34px, 4vw, 54px);
    font-weight: 730;
    margin-bottom: 24px;
}

h3 {
    font-size: 22px;
    font-weight: 700;
}

h1 span,
h2 span {
    color: var(--primary);
}

p {
    margin-top: 0;
    margin-bottom: 20px;
}

.large-text {
    font-size: 21px;
    line-height: 1.6;
}

.eyebrow {
    display: inline-block;
    margin-bottom: 18px;

    color: var(--primary);
    font-size: 13px;
    font-weight: 800;

    letter-spacing: 0.15em;
    text-transform: uppercase;
}


/* =========================================================
   GLOBAL LAYOUT
========================================================= */

.container {
    width: min(calc(100% - 48px), var(--container));
    margin-left: auto;
    margin-right: auto;
}

.container.narrow {
    max-width: 850px;
}

.section {
    padding: 110px 0;
}

.section-heading {
    max-width: 790px;
    margin-bottom: 55px;
}

.section-heading p {
    max-width: 680px;
    color: var(--text-light);
    font-size: 18px;
}


/* =========================================================
   BUTTONS
========================================================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 54px;
    padding: 0 28px;

    border: 2px solid transparent;
    border-radius: 8px;

    font-size: 15px;
    font-weight: 750;
    letter-spacing: 0.01em;

    transition:
        transform var(--transition),
        box-shadow var(--transition),
        background var(--transition),
        color var(--transition),
        border-color var(--transition);
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary,
.btn-small {
    color: var(--white);
    background: var(--primary);
}

.btn-primary:hover,
.btn-small:hover {
    background: var(--primary-dark);
    box-shadow: 0 12px 30px rgba(0, 167, 196, 0.25);
}

.btn-secondary {
    color: var(--navy);
    background: transparent;
    border-color: var(--border);
}

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary-dark);
    background: var(--white);
}

.btn-small {
    min-height: 44px;
    padding: 0 20px;
    font-size: 14px;
}

.btn-full {
    width: 100%;
}


/* =========================================================
   HEADER
========================================================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;

    height: 84px;

    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid rgba(220, 230, 234, 0.8);

    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.header-inner {
    height: 100%;

    display: flex;
    align-items: center;
    gap: 35px;
}

.site-logo {
    display: flex;
    align-items: center;
    margin-right: auto;
}

.site-logo img {
    width: auto;
    height: 48px;
    object-fit: contain;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.main-nav a {
    position: relative;

    color: var(--navy);
    font-size: 14px;
    font-weight: 650;

    transition: color var(--transition);
}

.main-nav a::after {
    content: "";

    position: absolute;
    left: 0;
    right: 100%;
    bottom: -8px;

    height: 2px;

    background: var(--primary);

    transition: right var(--transition);
}

.main-nav a:hover {
    color: var(--primary);
}

.main-nav a:hover::after {
    right: 0;
}


/* =========================================================
   HERO
========================================================= */

.hero {
    position: relative;
    overflow: hidden;

    min-height: 690px;

    display: flex;
    align-items: center;

    padding: 100px 0 110px;

    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(0, 167, 196, 0.14),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            #ffffff 0%,
            #f4fafc 100%
        );
}

.hero::before {
    content: "";

    position: absolute;

    width: 480px;
    height: 480px;

    right: -200px;
    bottom: -240px;

    border: 80px solid rgba(0, 167, 196, 0.05);
    border-radius: 50%;

    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns:
        minmax(0, 1.35fr)
        minmax(400px, 0.65fr);

    gap: 110px;
    align-items: center;
}

.hero-content {
    max-width: 730px;
}

.hero-lead {
    max-width: 650px;

    color: var(--text-light);

    font-size: 21px;
    line-height: 1.65;

    margin-bottom: 34px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;

    gap: 14px;

    margin-bottom: 34px;
}

.hero-programs {
    max-width: 700px;

    color: #78909a;

    font-size: 13px;
    font-weight: 600;

    line-height: 1.8;
}


/* HERO CARD */

.hero-visual {
    position: relative;
}

.hero-card {
    position: relative;
    z-index: 2;

    padding: 48px 42px;

    color: var(--white);

    background:
        linear-gradient(
            145deg,
            var(--navy) 0%,
            var(--navy-dark) 100%
        );

    border-radius: var(--radius-lg);

    box-shadow: var(--shadow-lg);
}

.hero-card::before {
    content: "";

    position: absolute;

    width: 110px;
    height: 110px;

    right: -18px;
    top: -18px;

    border-radius: 50%;

    background: rgba(0, 167, 196, 0.18);
}

.hero-card-label {
    display: inline-block;

    margin-bottom: 35px;

    color: var(--primary);

    font-size: 14px;
    font-weight: 900;

    letter-spacing: 0.18em;
}

.hero-card h2 {
    max-width: 370px;

    color: var(--white);

    font-size: 38px;
    margin-bottom: 22px;
}

.hero-card p {
    color: rgba(255, 255, 255, 0.75);

    font-size: 17px;
}

.hero-card-intro {
    max-width: 360px;

    margin-bottom: 28px;

    color: rgba(255, 255, 255, 0.72);

    font-size: 16px;
    line-height: 1.65;
}


/* szolgáltatások */

.hero-checks {
    display: grid;
    gap: 0;

    margin-top: 28px;
    padding-top: 0;

    border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.hero-checks span {
    position: relative;

    display: flex;
    align-items: center;

    min-height: 43px;

    padding-left: 25px;

    color: rgba(255, 255, 255, 0.88);

    border-bottom: 1px solid rgba(255, 255, 255, 0.09);

    font-size: 14px;
    font-weight: 600;
}


/* saját pipa */

.hero-checks span::before {
    content: "✓";

    position: absolute;
    left: 0;

    color: var(--primary);

    font-size: 13px;
    font-weight: 900;
}


/* alsó link */

.hero-card-link {
    display: inline-flex;
    align-items: center;

    gap: 9px;

    margin-top: 27px;

    color: var(--primary);

    font-size: 14px;
    font-weight: 750;

    transition:
        color 0.25s ease,
        gap 0.25s ease;
}

.hero-card-link:hover {
    color: #ffffff;
    gap: 14px;
}


/* nyíl külön animálható */

.hero-card-link span {
    font-size: 18px;
    line-height: 1;
}


.service-content h3 {
    max-width: 720px;

    margin: 5px 0 18px;

    color: var(--navy);

    font-size: 22px;
    font-weight: 750;
    line-height: 1.35;
    letter-spacing: -0.02em;
}

.service-note {
    position: relative;

    max-width: 780px;

    margin-top: 28px !important;
    padding: 18px 22px;

    color: var(--text-light);

    background: var(--primary-light);

    border-left: 3px solid var(--primary);
    border-radius: 0 8px 8px 0;

    font-size: 14px;
    line-height: 1.65;
}

/* =========================================================
   TRUST BAR
========================================================= */

.trust-bar {
    background: var(--navy);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.trust-item {
    min-height: 140px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 25px 35px;

    border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.trust-item:first-child {
    border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.trust-item strong {
    color: var(--primary);

    font-size: 28px;
    font-weight: 800;

    line-height: 1.2;
}

.trust-item span {
    margin-top: 7px;

    color: rgba(255, 255, 255, 0.68);

    font-size: 13px;
}


/* =========================================================
   INTRO
========================================================= */

.intro {
    text-align: center;
}

.intro .large-text {
    color: var(--navy);

    font-size: 23px;
}

.intro > .container > p:not(.large-text) {
    color: var(--text-light);
}

.value-message {
    position: relative;

    margin-top: 55px;
    padding: 38px 45px;

    text-align: left;

    background: var(--primary-light);

    border-left: 5px solid var(--primary);
    border-radius: 0 var(--radius) var(--radius) 0;
}

.value-message strong {
    display: block;

    margin-bottom: 10px;

    color: var(--navy);

    font-size: 22px;
}

.value-message p {
    margin: 0;

    color: var(--text-light);

    font-size: 17px;
}


/* =========================================================
   SERVICES
========================================================= */

.services {
    background: var(--background);
}

.accordion {
    border-top: 1px solid var(--border);
}

.service-item {
    background: transparent;

    border-bottom: 1px solid var(--border);

    transition:
        background var(--transition),
        box-shadow var(--transition);
}

.service-item[open] {
    background: var(--white);

    box-shadow: var(--shadow-sm);
}

.service-item summary {
    position: relative;

    min-height: 118px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;

    padding: 30px 32px;

    list-style: none;
    cursor: pointer;

    transition:
        padding var(--transition),
        background var(--transition);
}

.service-item summary::-webkit-details-marker {
    display: none;
}

.service-item summary::marker {
    display: none;
    content: "";
}

.service-item summary:hover {
    background: rgba(255, 255, 255, 0.65);
}

.service-item[open] summary {
    padding-bottom: 22px;
}

.service-heading {
    display: flex;
    align-items: center;

    gap: 28px;
}

.service-number {
    min-width: 38px;

    color: var(--primary);

    font-size: 13px;
    font-weight: 850;

    letter-spacing: 0.1em;
}

.service-title {
    display: block;

    margin-bottom: 5px;

    color: var(--navy);

    font-size: 23px;
    font-weight: 750;

    letter-spacing: -0.02em;
}

.service-lead {
    display: block;

    color: var(--text-light);

    font-size: 15px;
}

.plus {
    flex: 0 0 42px;

    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--primary);

    border: 1px solid var(--border);
    border-radius: 50%;

    font-size: 27px;
    font-weight: 300;

    line-height: 1;

    transition:
        transform 0.3s ease,
        color var(--transition),
        background var(--transition),
        border-color var(--transition);
}

.service-item summary:hover .plus {
    color: var(--white);

    background: var(--primary);
    border-color: var(--primary);
}

.service-item[open] .plus {
    transform: rotate(45deg);

    color: var(--white);

    background: var(--primary);
    border-color: var(--primary);
}


/* OPEN CONTENT */

.service-content {
    max-width: 880px;

    padding:
        0
        32px
        38px
        98px;

    color: var(--text-light);

    font-size: 16px;
}

.service-content p {
    max-width: 780px;
}

.tag-list {
    display: flex;
    flex-wrap: wrap;

    gap: 8px;

    margin: 25px 0;
}

.tag-list span {
    display: inline-flex;

    padding: 7px 13px;

    color: var(--navy);

    background: var(--primary-light);

    border-radius: 100px;

    font-size: 13px;
    font-weight: 650;
}

.text-link {
    display: inline-flex;
    align-items: center;

    margin-top: 12px;

    color: var(--primary-dark);

    font-weight: 750;

    transition:
        color var(--transition),
        transform var(--transition);
}

.text-link:hover {
    color: var(--primary);
    transform: translateX(4px);
}


/* =========================================================
   ERP / CRM
========================================================= */

.product-section {
    background: var(--white);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 30px;
}

.product-card {
    position: relative;
    overflow: hidden;

    min-height: 480px;

    display: flex;
    flex-direction: column;

    padding: 55px;

    background: var(--background);

    border: 1px solid var(--border);
    border-radius: var(--radius-lg);

    transition:
        transform var(--transition),
        box-shadow var(--transition),
        border-color var(--transition);
}

.product-card::after {
    content: "";

    position: absolute;

    width: 250px;
    height: 250px;

    right: -130px;
    bottom: -130px;

    border: 50px solid rgba(0, 167, 196, 0.06);
    border-radius: 50%;
}

.product-card:hover {
    transform: translateY(-5px);

    border-color: rgba(0, 167, 196, 0.35);

    box-shadow: var(--shadow-md);
}

.product-card h2 {
    max-width: 470px;

    font-size: 40px;
}

.product-card > p {
    max-width: 470px;

    color: var(--text-light);

    font-size: 17px;
}

.product-card .text-link {
    position: relative;
    z-index: 2;

    margin-top: auto;
    padding-top: 30px;
}


/* =========================================================
   WHY FRIK
========================================================= */

.why {
    background: var(--navy);
}

.why .section-heading {
    max-width: 880px;
}

.why .section-heading h2 {
    color: var(--white);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 1px;

    background: rgba(255, 255, 255, 0.12);

    border: 1px solid rgba(255, 255, 255, 0.12);
}

.why-item {
    min-height: 260px;

    padding: 38px;

    background: var(--navy);

    transition: background var(--transition);
}

.why-item:hover {
    background: rgba(255, 255, 255, 0.04);
}

.why-icon {
    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 25px;

    color: var(--navy-dark);

    background: var(--primary);

    border-radius: 50%;

    font-weight: 900;
}

.why-item h3 {
    color: var(--white);
}

.why-item p {
    color: rgba(255, 255, 255, 0.63);

    font-size: 15px;
}


/* =========================================================
   CONTACT
========================================================= */

.contact-section {
    padding: 120px 0;

    background:
        radial-gradient(
            circle at 15% 10%,
            rgba(0, 167, 196, 0.12),
            transparent 30%
        ),
        var(--background);
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(500px, 1.1fr);

    gap: 90px;
    align-items: start;
}

.contact-content {
    position: sticky;
    top: 130px;
}

.contact-content > p {
    max-width: 520px;

    color: var(--text-light);
}

.contact-content .large-text {
    color: var(--navy);
    font-weight: 650;
}

.contact-highlight {
    margin-top: 40px;
    padding-left: 22px;

    border-left: 3px solid var(--primary);
}

.contact-highlight strong {
    display: block;

    margin-top: 10px;

    color: var(--navy);

    font-size: 20px;
}


/* =========================================================
   FORM
   később az ügyviteli embedhez is felhasználható
========================================================= */

.contact-form {
    padding: 45px;

    background: var(--white);

    border: 1px solid var(--border);
    border-radius: var(--radius-lg);

    box-shadow: var(--shadow-md);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 18px;
}

.contact-form label {
    display: block;

    margin-bottom: 20px;

    color: var(--navy);

    font-size: 13px;
    font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;

    margin-top: 8px;
    padding: 13px 15px;

    color: var(--text);

    background: #fbfcfd;

    border: 1px solid var(--border);
    border-radius: 8px;

    outline: none;

    transition:
        border-color var(--transition),
        box-shadow var(--transition),
        background var(--transition);
}

.contact-form input,
.contact-form select {
    min-height: 50px;
}

.contact-form textarea {
    min-height: 130px;
    resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    background: var(--white);

    border-color: var(--primary);

    box-shadow: 0 0 0 4px rgba(0, 167, 196, 0.10);
}

.privacy-check {
    display: flex !important;
    align-items: flex-start;

    gap: 10px;

    color: var(--text-light) !important;

    font-weight: 500 !important;
}

.privacy-check input {
    width: 17px;
    height: 17px;

    min-height: auto;

    margin-top: 3px;

    flex: 0 0 17px;
}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {
    padding-top: 70px;

    color: rgba(255, 255, 255, 0.65);

    background: var(--navy-dark);
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 40px;

    padding-bottom: 55px;
}

.footer-brand img {
    max-height: 50px;
    width: auto;

    margin-bottom: 18px;
}

.footer-brand p {
    margin: 0;

    font-size: 14px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;

    gap: 28px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.75);

    font-size: 14px;
    font-weight: 600;

    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;

    gap: 30px;

    padding-top: 25px;
    padding-bottom: 25px;

    border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.footer-bottom p {
    margin: 0;

    font-size: 12px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1050px) {

    .main-nav {
        display: none;
    }

    .hero-inner {
        grid-template-columns: 1fr 0.75fr;
        gap: 45px;
    }

    .hero-card {
        padding: 38px 32px;
    }

    .hero-card h2 {
        font-size: 32px;
    }

    .trust-item {
        padding: 25px 20px;
    }

    .contact-grid {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }

    .product-card {
        padding: 40px;
    }

}


/* =========================================================
   MOBILE / SMALL TABLET
========================================================= */

@media (max-width: 820px) {

    .section {
        padding: 80px 0;
    }

    .hero {
        padding: 70px 0 80px;
    }

    .hero-inner {
        grid-template-columns: 1fr;
    }

    .hero-content {
        max-width: none;
    }

    .hero-visual {
        max-width: 600px;
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-item:nth-child(2) {
        border-right: none;
    }

    .trust-item:nth-child(3),
    .trust-item:nth-child(4) {
        border-top: 1px solid rgba(255, 255, 255, 0.12);
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-content {
        position: static;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .container {
        width: min(calc(100% - 32px), var(--container));
    }

    .site-header {
        height: 72px;
    }

    .site-logo img {
        height: 40px;
    }

    .site-header .btn-small {
        min-height: 40px;

        padding: 0 13px;

        font-size: 12px;
    }

    h1 {
        font-size: 42px;
    }

    h2 {
        font-size: 34px;
    }

    .hero {
        min-height: auto;

        padding-top: 65px;
    }

   .hero-lead {
    max-width: 720px;

    color: var(--text-light);

    font-size: 22px;
    line-height: 1.65;

    margin-bottom: 34px;
}

    .hero-actions {
        display: grid;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-programs {
        font-size: 12px;
    }

    .hero-card {
        padding: 35px 27px;

        border-radius: 20px;
    }

    .hero-card h2 {
        font-size: 31px;
    }

    .trust-grid {
        grid-template-columns: 1fr 1fr;
    }

    .trust-item {
    min-height: 165px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 30px 42px;

    border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.trust-item strong {
    color: var(--primary);

    font-size: 34px;
    font-weight: 800;
    line-height: 1.2;
}

.trust-item span {
    margin-top: 9px;

    color: rgba(255, 255, 255, 0.72);

    font-size: 15px;
}

    .value-message {
        margin-top: 40px;

        padding: 28px 25px;
    }

    .section-heading {
        margin-bottom: 38px;
    }


    /* Accordion */

    .service-item summary {
        min-height: 100px;

        padding: 25px 16px;

        gap: 15px;
    }

    .service-heading {
        gap: 14px;
    }

    .service-number {
        min-width: 28px;

        font-size: 11px;
    }

    .service-title {
        font-size: 18px;
    }

    .service-lead {
        margin-top: 5px;

        font-size: 12px;
        line-height: 1.4;
    }

    .plus {
        flex-basis: 36px;

        width: 36px;
        height: 36px;

        font-size: 23px;
    }

    .service-content {
        padding:
            0
            20px
            30px
            58px;

        font-size: 15px;
    }


    /* Products */

   .product-card {
    position: relative;
    overflow: hidden;

    min-height: 540px;

    display: flex;
    flex-direction: column;

    padding: 65px;

    background: var(--background);

    border: 1px solid var(--border);
    border-radius: var(--radius-lg);

    transition:
        transform var(--transition),
        box-shadow var(--transition),
        border-color var(--transition);
}

.product-card h2 {
    max-width: 500px;
    font-size: 46px;
}

.product-card > p {
    max-width: 520px;

    color: var(--text-light);

    font-size: 18px;
    line-height: 1.7;
}


    /* Why */

    .why-grid {
        grid-template-columns: 1fr;
    }

    .why-item {
        min-height: auto;

        padding: 30px;
    }


    /* Contact */

    .contact-section {
        padding: 80px 0;
    }

    .contact-form {
        padding: 28px 22px;

        border-radius: 20px;
    }

    .form-row {
        grid-template-columns: 1fr;

        gap: 0;
    }


    /* Footer */

    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-links {
        flex-direction: column;

        gap: 14px;
    }

    .footer-bottom {
        flex-direction: column;

        gap: 8px;
    }

}

/* =========================================================
   PROCESS
========================================================= */

.process-section {
    position: relative;
    overflow: hidden;

    background: #ffffff;
}

.process-heading {
    max-width: 760px;
}

.process-grid {
    position: relative;

    display: grid;
    grid-template-columns: repeat(4, 1fr);

    margin-top: 70px;
}


/* összekötő vonal */

.process-grid::before {
    content: "";

    position: absolute;

    top: 32px;
    left: 8%;
    right: 8%;

    height: 1px;

    background: var(--border);
}


.process-item {
    position: relative;
    z-index: 2;

    padding-right: 45px;
}


.process-number {
    width: 64px;
    height: 64px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 32px;

    color: #ffffff;

    background: var(--primary);

    border: 8px solid #ffffff;
    border-radius: 50%;

    box-shadow:
        0 0 0 1px var(--border),
        0 8px 25px rgba(0, 167, 196, 0.18);

    font-size: 14px;
    font-weight: 800;

    letter-spacing: 0.08em;
}


.process-item h3 {
    margin-bottom: 15px;

    color: var(--navy);

    font-size: 21px;
}


.process-item p {
    max-width: 240px;

    margin: 0;

    color: var(--text-light);

    font-size: 15px;
    line-height: 1.7;
}


/* =========================================================
   PROCESS RESPONSIVE
========================================================= */

@media (max-width: 900px) {

    .process-grid {
        grid-template-columns: repeat(2, 1fr);

        gap: 55px 35px;
    }

    .process-grid::before {
        display: none;
    }

    .process-item p {
        max-width: 330px;
    }

}


@media (max-width: 600px) {

    .process-grid {
        grid-template-columns: 1fr;

        gap: 0;

        margin-top: 45px;
    }

    .process-item {
        position: relative;

        padding:
            0
            0
            45px
            80px;
    }

    .process-item:not(:last-child)::before {
        content: "";

        position: absolute;

        left: 31px;
        top: 58px;
        bottom: 0;

        width: 1px;

        background: var(--border);
    }

    .process-number {
        position: absolute;

        left: 0;
        top: 0;

        width: 62px;
        height: 62px;

        margin: 0;
    }

    .process-item h3 {
        padding-top: 7px;
    }

    .process-item p {
        max-width: none;
    }

}


/* =========================================================
   ACCESSIBILITY / REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
    }

}


/* =========================================================
   AKKREDITÁLT SZÁLLÍTÓ – SEO / INFORMÁCIÓS BLOKK
   ========================================================= */

.accredited-section {
    position: relative;
    overflow: hidden;
    background: var(--white);
}

.accredited-section::after {
    content: "";
    position: absolute;
    width: 360px;
    height: 360px;
    right: -190px;
    bottom: -210px;
    border: 60px solid rgba(0, 167, 196, 0.045);
    border-radius: 50%;
    pointer-events: none;
}

.accredited-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
    gap: 90px;
    align-items: start;
}

.accredited-intro {
    max-width: 560px;
}

.accredited-intro h2 {
    margin-bottom: 26px;
}

.accredited-intro > p {
    color: var(--text-light);
    font-size: 18px;
}

.accredited-highlight {
    margin-top: 34px;
    padding: 25px 28px;
    background: var(--primary-light);
    border-left: 4px solid var(--primary);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.accredited-highlight strong {
    display: block;
    margin-bottom: 7px;
    color: var(--navy);
    font-size: 18px;
}

.accredited-highlight p {
    margin: 0;
    color: var(--text-light);
    font-size: 15px;
}

.accredited-points {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.accredited-point {
    min-height: 190px;
    padding: 32px;
    background: var(--background);
}

.accredited-point h3 {
    margin-bottom: 12px;
    font-size: 20px;
}

.accredited-point p {
    margin: 0;
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.65;
}

.accredited-point strong {
    display: block;
    margin-bottom: 5px;

    color: var(--navy);
    font-size: 17px;
    font-weight: 800;
    line-height: 1.3;
}

.accredited-point .why-icon {
    width: 32px;
    height: 32px;
    margin-bottom: 20px;
    font-size: 13px;
}


/* =========================================================
   RESPONSIVE – AKKREDITÁLT SZÁLLÍTÓ
   ========================================================= */

@media (max-width: 900px) {
    .accredited-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .accredited-intro {
        max-width: 720px;
    }
}

@media (max-width: 600px) {
    .accredited-points {
        grid-template-columns: 1fr;
    }

    .accredited-point {
        min-height: auto;
        padding: 28px 25px;
    }

    .accredited-highlight {
        padding: 23px 22px;
    }
}


/* =========================================================
   MOBILE KORREKCIÓK
   A korábbi mobil szabályok néhány desktop méretet felülírtak.
   Ezek a szabályok szándékosan a fájl végén vannak.
   ========================================================= */

@media (max-width: 600px) {
    .hero-lead {
        font-size: 18px;
        line-height: 1.6;
    }

    .trust-item {
        min-height: 135px;
        padding: 24px 20px;
    }

    .trust-item strong {
        font-size: 27px;
    }

    .trust-item span {
        font-size: 13px;
    }

    .product-card {
        min-height: auto;
        padding: 35px 27px;
    }

    .product-card h2 {
        font-size: 34px;
    }

    .product-card > p {
        font-size: 16px;
        line-height: 1.65;
    }
}
