    :root {
        --gold-light: #D4AF37;
        --gold-main: #C5A028;
        --gold-dark: #B8860B;
        --gold-shine: #F4E4BA;
        --navy-deep: #0A1628;
        --navy-main: #1A2744;
        --navy-light: #2A3B5C;
        --navy-accent: #3D5A80;
        --cream: #FAF8F5;
        --white: #FFFFFF;
    }

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    html {
        scroll-behavior: smooth;
    }

    body {
        font-family: 'Montserrat', sans-serif;
        background: var(--navy-deep);
        color: var(--cream);
        overflow-x: hidden;
        line-height: 1.7;
    }



    /* Grain Overlay */
    body::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
        opacity: 0.03;
        pointer-events: none;
        z-index: 1000;
    }

    /* Navigation */
    nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        padding: 1.5rem 5%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        z-index: 100;
        background: linear-gradient(to bottom, var(--navy-deep), transparent);
        transition: all 0.4s ease;
    }

    nav.scrolled {
        background: rgba(10, 22, 40, 0.95);
        backdrop-filter: blur(10px);
        padding: 1rem 5%;
    }

    .nav-logo {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        text-decoration: none;
    }

    .nav-logo-icon {
        width: 45px;
        height: 45px;
    }

    .nav-logo-text {
        font-family: 'Cormorant Garamond', serif;
        font-size: 1.4rem;
        font-weight: 600;
        color: var(--gold-light);
        letter-spacing: 0.05em;
    }

    .nav-links {
        display: flex;
        gap: 3rem;
        list-style: none;
    }

    .nav-links a {
        color: var(--cream);
        text-decoration: none;
        font-size: 0.85rem;
        font-weight: 400;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        position: relative;
        padding: 0.5rem 0;
        transition: color 0.3s ease;
    }

    .nav-links a::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 1px;
        background: linear-gradient(90deg, var(--gold-light), var(--gold-shine));
        transition: width 0.3s ease;
    }

    .nav-links a:hover {
        color: var(--gold-light);
    }

    .nav-links a:hover::after {
        width: 100%;
    }

    .nav-cta {
        background: linear-gradient(135deg, var(--gold-main), var(--gold-light));
        color: var(--navy-deep);
        padding: 0.75rem 1.75rem;
        border: none;
        font-family: 'Montserrat', sans-serif;
        font-size: 0.8rem;
        font-weight: 600;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        cursor: pointer;
        transition: all 0.3s ease;
        text-decoration: none;
    }

    .nav-cta:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    }

    /* Hero Section */
    .hero {
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        padding: 8rem 5% 4rem;
        overflow: hidden;
    }

    .hero-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background:
            radial-gradient(ellipse 80% 50% at 50% 0%, rgba(61, 90, 128, 0.15) 0%, transparent 50%),
            radial-gradient(ellipse 60% 40% at 80% 80%, rgba(212, 175, 55, 0.08) 0%, transparent 40%),
            linear-gradient(180deg, var(--navy-deep) 0%, var(--navy-main) 100%);
    }

    .hero-decoration {
        position: absolute;
        width: 600px;
        height: 600px;
        border: 1px solid rgba(212, 175, 55, 0.1);
        border-radius: 50%;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        animation: pulse 8s ease-in-out infinite;
    }

    .hero-decoration:nth-child(2) {
        width: 700px;
        height: 700px;
        animation-delay: -2s;
    }

    .hero-decoration:nth-child(3) {
        width: 800px;
        height: 800px;
        animation-delay: -4s;
    }

    @keyframes pulse {
        0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
        50% { opacity: 0.6; transform: translate(-50%, -50%) scale(1.02); }
    }

    .hero-content {
        position: relative;
        z-index: 10;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 2rem;
        max-width: 1200px;
        width: 100%;
    }

    .hero-text {
        flex: 1;
        text-align: left;
    }

    .hero-logo {
        width: 350px;
        height: 350px;
        flex-shrink: 0;
        animation: fadeInScale 1.2s ease-out;
    }

    .hero-cta-group {
        display: flex;
        gap: 1.5rem;
        justify-content: flex-start;
        flex-wrap: wrap;
        animation: fadeInUp 1s ease-out 0.7s both;
    }

    @keyframes fadeInScale {
        from { opacity: 0; transform: scale(0.8); }
        to { opacity: 1; transform: scale(1); }
    }

    .hero-tagline {
        font-family: 'Cormorant Garamond', serif;
        font-size: clamp(2.5rem, 6vw, 4.5rem);
        font-weight: 400;
        font-style: italic;
        color: var(--cream);
        margin-bottom: 1.5rem;
        line-height: 1.2;
        animation: fadeInUp 1s ease-out 0.3s both;
    }

    .hero-tagline .gold {
        color: var(--gold-light);
        font-weight: 600;
        font-style: normal;
    }

    @keyframes fadeInUp {
        from { opacity: 0; transform: translateY(30px); }
        to { opacity: 1; transform: translateY(0); }
    }

    .hero-subtitle {
        font-size: 1rem;
        font-weight: 300;
        letter-spacing: 0.3em;
        text-transform: uppercase;
        color: rgba(250, 248, 245, 0.7);
        margin-bottom: 3rem;
        animation: fadeInUp 1s ease-out 0.5s both;
    }


    .btn-primary {
        background: linear-gradient(135deg, var(--gold-main), var(--gold-light), var(--gold-shine));
        background-size: 200% 200%;
        color: var(--navy-deep);
        padding: 1.25rem 3rem;
        border: none;
        font-family: 'Montserrat', sans-serif;
        font-size: 0.85rem;
        font-weight: 600;
        letter-spacing: 0.15em;
        text-transform: uppercase;
        cursor: pointer;
        transition: all 0.4s ease;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 0.75rem;
        position: relative;
        overflow: hidden;
    }

    .btn-primary::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
        transition: left 0.5s ease;
    }

    .btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
        background-position: 100% 100%;
    }

    .btn-primary:hover::before {
        left: 100%;
    }

    .btn-secondary {
        background: transparent;
        color: var(--cream);
        padding: 1.25rem 3rem;
        border: 1px solid rgba(212, 175, 55, 0.5);
        font-family: 'Montserrat', sans-serif;
        font-size: 0.85rem;
        font-weight: 400;
        letter-spacing: 0.15em;
        text-transform: uppercase;
        cursor: pointer;
        transition: all 0.4s ease;
        text-decoration: none;
    }

    .btn-secondary:hover {
        background: rgba(212, 175, 55, 0.1);
        border-color: var(--gold-light);
        color: var(--gold-light);
    }

    .scroll-indicator {
        position: absolute;
        bottom: 3rem;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        animation: fadeInUp 1s ease-out 1s both;
        cursor: pointer; /* ← Dodaj kursor wskazujący */
        text-decoration: none; /* ← Usuń podkreślenie linku */
        transition: opacity 0.3s ease; /* ← Dodaj płynne przejście */
    }

    .scroll-indicator:hover {
      opacity: 0.7; /* ← Efekt hover */
    }

    .scroll-indicator span {
        font-size: 0.7rem;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        color: rgba(250, 248, 245, 0.5);
    }

    .scroll-line {
        width: 1px;
        height: 60px;
        background: linear-gradient(to bottom, var(--gold-light), transparent);
        animation: scrollPulse 2s ease-in-out infinite;
    }

    @keyframes scrollPulse {
        0%, 100% { transform: scaleY(1); opacity: 1; }
        50% { transform: scaleY(0.5); opacity: 0.5; }
    }

    /* Section Styling */
    section {
        padding: 8rem 5%;
        position: relative;
    }

    .section-header {
        text-align: center;
        margin-bottom: 5rem;
    }

    .section-label {
        font-size: 0.75rem;
        font-weight: 500;
        letter-spacing: 0.3em;
        text-transform: uppercase;
        color: var(--gold-light);
        margin-bottom: 1rem;
        display: block;
    }

    .section-title {
        font-family: 'Cormorant Garamond', serif;
        font-size: clamp(2rem, 4vw, 3rem);
        font-weight: 400;
        color: var(--cream);
        line-height: 1.3;
    }

    .section-divider {
        width: 80px;
        height: 1px;
        background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
        margin: 2rem auto 0;
    }

    /* About Section */
    .about {
        background: linear-gradient(180deg, var(--navy-main) 0%, var(--navy-deep) 100%);
    }

    .about-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 6rem;
        max-width: 1200px;
        margin: 0 auto;
        align-items: center;
    }

    .about-image {
        position: relative;
    }

    .about-image-frame {
        position: relative;
        padding: 2rem;
    }

    .about-image-frame::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: 1px solid rgba(212, 175, 55, 0.3);
        transform: translate(-15px, -15px);
    }

    .about-image-inner {
        background: linear-gradient(135deg, var(--navy-light), var(--navy-accent));
        aspect-ratio: 4/5;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        overflow: hidden;
        background-image: url('../photos/HERO_1.webp');
        background-size: cover;
        background-position: center top;
    }

    .about-image-inner::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(45deg, transparent 40%, rgba(212, 175, 55, 0.1) 50%, transparent 60%);
        animation: shimmer 3s ease-in-out infinite;
    }

    @keyframes shimmer {
        0% { transform: translateX(-100%); }
        100% { transform: translateX(100%); }
    }

    .about-placeholder {
        width: 120px;
        height: 120px;
        opacity: 0.3;
    }

    .about-content h3 {
        font-family: 'Cormorant Garamond', serif;
        font-size: 2rem;
        font-weight: 500;
        color: var(--cream);
        margin-bottom: 1.5rem;
    }

    .about-content p {
        color: rgba(250, 248, 245, 0.8);
        margin-bottom: 1.5rem;
        font-weight: 300;
    }

    .about-credentials {
        display: flex;
        gap: 3rem;
        margin-top: 2.5rem;
        padding-top: 2.5rem;
        border-top: 1px solid rgba(212, 175, 55, 0.2);
    }

    .credential {
        text-align: center;
    }

    .credential-number {
        font-family: 'Cormorant Garamond', serif;
        font-size: 3rem;
        font-weight: 600;
        color: var(--gold-light);
        line-height: 1;
    }

    .credential-label {
        font-size: 0.75rem;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: rgba(250, 248, 245, 0.6);
        margin-top: 0.5rem;
    }

    /* Services Section */
    .services {
        background: var(--navy-deep);
        position: relative;
    }

    .services::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
    }

    .services-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        max-width: 1200px;
        margin: 0 auto;
    }

    .service-card {
        background: linear-gradient(135deg, rgba(26, 39, 68, 0.5), rgba(42, 59, 92, 0.3));
        border: 1px solid rgba(212, 175, 55, 0.1);
        padding: 3rem 2.5rem;
        transition: all 0.5s ease;
        position: relative;
        overflow: hidden;
    }

    .service-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 3px;
        background: linear-gradient(90deg, var(--gold-main), var(--gold-light));
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.5s ease;
    }

    .service-card:hover {
        transform: translateY(-10px);
        border-color: rgba(212, 175, 55, 0.3);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    }

    .service-card:hover::before {
        transform: scaleX(1);
    }

    .service-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 2rem;
        color: var(--gold-light);
    }

    .service-title {
        font-family: 'Cormorant Garamond', serif;
        font-size: 1.5rem;
        font-weight: 500;
        color: var(--cream);
        margin-bottom: 1rem;
    }

    .service-desc {
        color: rgba(250, 248, 245, 0.7);
        font-size: 0.95rem;
        font-weight: 300;
        line-height: 1.8;
    }

    /* Why Us Section */
    .why-us {
        background: linear-gradient(180deg, var(--navy-deep) 0%, var(--navy-main) 100%);
    }

    .features-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 3rem;
        max-width: 1200px;
        margin: 0 auto;
    }

    .feature {
        text-align: center;
        padding: 2rem;
    }

    .feature-icon {
        width: 80px;
        height: 80px;
        margin: 0 auto 1.5rem;
        border: 1px solid rgba(212, 175, 55, 0.3);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.4s ease;
    }

    .feature:hover .feature-icon {
        background: rgba(212, 175, 55, 0.1);
        border-color: var(--gold-light);
        transform: scale(1.1);
    }

    .feature-icon img {
    width: 32px;
    height: 32px;
    }

    .feature-icon svg {
        width: 32px;
        height: 32px;
        color: var(--gold-light);
    }

    .feature-title {
        font-family: 'Cormorant Garamond', serif;
        font-size: 1.25rem;
        font-weight: 500;
        color: var(--cream);
        margin-bottom: 0.75rem;
    }

    .feature-desc {
        font-size: 0.9rem;
        color: rgba(250, 248, 245, 0.6);
        font-weight: 300;
    }

    /* Contact Section */
    .contact {
        background: var(--navy-main);
        position: relative;
    }

    .contact::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
    }

    .contact-wrapper {
        max-width: 1000px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }

    .contact-info h3 {
        font-family: 'Cormorant Garamond', serif;
        font-size: 2rem;
        font-weight: 500;
        color: var(--cream);
        margin-bottom: 1.5rem;
    }

    .contact-info p {
        color: rgba(250, 248, 245, 0.7);
        font-weight: 300;
        margin-bottom: 2.5rem;
    }

    .contact-details {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }

    .contact-item {
        display: flex;
        align-items: center;
        gap: 1rem;
    }

    .contact-item-icon {
        width: 50px;
        height: 50px;
        border: 1px solid rgba(212, 175, 55, 0.3);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .contact-item-icon svg {
        width: 20px;
        height: 20px;
        color: var(--gold-light);
    }

    .contact-item-icon img {
    width: 20px;
    height: 20px;
}

    .contact-item-content {
        display: flex;
        flex-direction: column;
    }

    .contact-item-label {
        font-size: 0.7rem;
        letter-spacing: 0.15em;
        text-transform: uppercase;
        color: var(--gold-light);
        margin-bottom: 0.25rem;
    }

    .contact-item-value {
        color: var(--cream);
        font-weight: 400;
    }

    .contact-form {
        background: rgba(10, 22, 40, 0.5);
        padding: 3rem;
        border: 1px solid rgba(212, 175, 55, 0.1);
    }

    .form-group {
        margin-bottom: 1.5rem;
    }

    .form-group label {
        display: block;
        font-size: 0.75rem;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: rgba(250, 248, 245, 0.6);
        margin-bottom: 0.5rem;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        width: 100%;
        padding: 1rem;
        background: rgba(26, 39, 68, 0.5);
        border: 1px solid rgba(212, 175, 55, 0.2);
        color: var(--cream);
        font-family: 'Montserrat', sans-serif;
        font-size: 0.95rem;
        transition: all 0.3s ease;
    }

    .form-group input:focus,
    .form-group textarea:focus,
    .form-group select:focus {
        outline: none;
        border-color: var(--gold-light);
        background: rgba(26, 39, 68, 0.8);
    }

    .form-group textarea {
        resize: vertical;
        min-height: 120px;
    }

    .form-group select option {
        background: var(--navy-main);
    }

    .contact-form .btn-primary {
        width: 100%;
        justify-content: center;
    }


    /*Dodawanie styli do checkbox*/

    .checkbox-group {
        margin-bottom: 2rem;
    }

    .checkbox-label {
        display: flex;
        align-items: flex-start;
        gap: 0.75rem;
        cursor: pointer;
        font-size: 0.85rem;
        line-height: 1.6;
    }

    .checkbox-label input[type="checkbox"] {
        width: auto;
        min-width: 18px;
        height: 18px;
        margin-top: 2px;
        cursor: pointer;
        accent-color: var(--gold-light);
    }

    .checkbox-text {
        color: rgba(250, 248, 245, 0.7);
        font-size: 0.85rem;
        font-weight: 300;
    }

    .checkbox-text a {
        color: var(--gold-light);
        text-decoration: underline;
        transition: color 0.3s ease;
    }

    .checkbox-text a:hover {
        color: var(--gold-shine);
    }

    /* Opcjonalnie: styl dla niezaznaczonego checkboxa przy próbie wysłania */
    .checkbox-label input[type="checkbox"]:invalid {
        outline: 1px solid rgba(255, 100, 100, 0.5);
    }


    /* Warta Badge */
    .warta-badge {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        padding: 4rem 5%;
        background: linear-gradient(180deg, var(--navy-main) 0%, var(--navy-deep) 100%);
        border-top: 1px solid rgba(212, 175, 55, 0.1);
    }

    .warta-badge-text {
        font-size: 0.85rem;
        letter-spacing: 0.15em;
        text-transform: uppercase;
        color: rgba(250, 248, 245, 0.5);
    }

    .warta-logo {
        height: 40px;
        opacity: 0.6;
        filter: grayscale(100%) brightness(2);
        transition: all 0.3s ease;
    }

    .warta-logo:hover {
        opacity: 1;
        filter: none;
    }

    /* Footer */
    footer {
        background: var(--navy-deep);
        padding: 3rem 5%;
        border-top: 1px solid rgba(212, 175, 55, 0.1);
    }

    .footer-content {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .footer-logo {
        display: flex;
        align-items: center;
        gap: 0.75rem;
    }

    .footer-logo svg {
        width: 35px;
        height: 35px;
    }

    .footer-logo span {
        font-family: 'Cormorant Garamond', serif;
        font-size: 1.2rem;
        font-weight: 600;
        color: var(--gold-light);
    }

    .footer-text {
        font-size: 0.8rem;
        color: rgba(250, 248, 245, 0.5);
    }

    .footer-links {
        display: flex;
        gap: 2rem;
    }

    .footer-links a {
        font-size: 0.8rem;
        color: rgba(250, 248, 245, 0.5);
        text-decoration: none;
        transition: color 0.3s ease;
    }

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

    /* Mobile Menu */
    .mobile-menu-btn {
        display: none;
        flex-direction: column;
        gap: 5px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 5px;
        z-index: 101;
    }

    .mobile-menu-btn span {
        width: 25px;
        height: 2px;
        background: var(--gold-light);
        transition: all 0.3s ease;
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .mobile-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: rgba(10, 22, 40, 0.98);
        backdrop-filter: blur(10px);
        padding: 6rem 2rem 2rem;
        transition: right 0.4s ease;
        z-index: 100;
        border-left: 1px solid rgba(212, 175, 55, 0.2);
    }

    .mobile-menu.active {
        right: 0;
    }

    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.7);
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s ease;
        z-index: 99;
    }

    .mobile-menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    .mobile-nav-links {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        list-style: none;
    }

    .mobile-nav-links a {
        color: var(--cream);
        text-decoration: none;
        font-size: 1.2rem;
        font-weight: 400;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        padding: 0.5rem 0;
        border-bottom: 1px solid rgba(212, 175, 55, 0.1);
        transition: all 0.3s ease;
    }

    .mobile-nav-links a:hover {
        color: var(--gold-light);
        padding-left: 1rem;
    }

    .mobile-menu-cta {
        margin-top: 3rem;
    }

    /* Responsive */
    @media (max-width: 1024px) {
        .hero-content {
            flex-direction: column;
            text-align: center;
        }

        .hero-text {
            text-align: center;
        }

        .hero-logo {
            width: 250px;
            height: 250px;
            order: -1;
        }

        .hero-cta-group {
            justify-content: center;
        }

        .about-image-frame {
            max-width: 500px;
            margin: 0 auto;
        }

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

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

        .about-grid {
            grid-template-columns: 1fr;
            gap: 4rem;
        }
    }

    @media (max-width: 768px) {
        .hero-content {
            flex-direction: column;
        }

        .hero-text {
            text-align: center;
        }

        .hero-logo {
            width: 180px;
            height: 180px;
            order: -1;
        }

        .hero-cta-group {
            flex-direction: column;
            align-items: center;
        }

        .scroll-indicator {
          display: none;
        }

        .about-image-frame {
            padding: 1rem;
            max-width: 350px;
        }

        .about-image-frame::before {
            transform: translate(-10px, -10px);
        }

        .about-credentials {
            flex-direction: column;
            gap: 2rem;
            align-items: center;
        }

        .credential {
            width: 100%;
            max-width: 200px;
        }

        .contact-item-value {
            word-break: break-word;
            font-size: 0.9rem;
        }

        .nav-links {
            display: none;
        }

        .nav-cta {
            display: none;
        }

        .mobile-menu-btn {
            display: flex;
        }

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

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

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

        .footer-content {
          flex-direction: column;
          gap: 1.5rem;
          text-align: center;
        }

        .btn-primary, .btn-secondary {
            width: 100%;
            max-width: 300px;
            justify-content: center;
        }
    }

    @media (max-width: 480px) {
    .hero {
        padding: 6rem 4% 3rem;
    }

    .hero-tagline {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 0.75rem;
        letter-spacing: 0.2em;
    }

    .hero-logo {
        width: 140px;
        height: 140px;
    }

    .nav-logo-text {
        font-size: 1rem;
    }

    .nav-logo-icon {
        width: 35px;
        height: 35px;
    }

    .scroll-indicator {
      display: none;
    }

    section {
        padding: 5rem 4%;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .about-image-frame {
        max-width: 280px;
        padding: 0.75rem;
    }

    .contact-form {
        padding: 2rem 1.5rem;
    }

    .credential-number {
        font-size: 2.5rem;
    }

    .service-card,
    .feature {
        padding: 2rem 1.5rem;
    }

    .btn-primary, .btn-secondary {
        padding: 1rem 2rem;
        font-size: 0.75rem;
    }

    .warta-badge {
        flex-direction: column;
        gap: 1rem;
        padding: 2rem 4%;
    }

    .warta-badge-text {
        font-size: 0.7rem;
    }

    .warta-logo {
        height: 30px;
    }
  }

  .form-message {
      padding: 12px;
      margin-bottom: 20px;
      border-radius: 8px;
      display: none;
      font-size: 14px;
  }

  .form-message.success {
      background-color: #d4edda;
      color: #155724;
      border: 1px solid #c3e6cb;
      display: block;
  }

  .form-message.error {
      background-color: #f8d7da;
      color: #721c24;
      border: 1px solid #f5c6cb;
      display: block;
  }

  .btn-primary:disabled {
      opacity: 0.6;
      cursor: not-allowed;
  }

  .spinner {
      display: inline-block;
      width: 16px;
      height: 16px;
      border: 2px solid rgba(255, 255, 255, 0.3);
      border-radius: 50%;
      border-top-color: white;
      animation: spin 0.8s linear infinite;
  }

  @keyframes spin {
      to { transform: rotate(360deg); }
  }
  /* Safari - ominajnie podświetlenia nr telefonu */
    a[href^="tel"] {
    color: inherit !important;
    text-decoration: none !important;
    }

    /* Dodatkowo: hover / focus */
    a[href^="tel"]:hover,
    a[href^="tel"]:focus {
        color: inherit;
        text-decoration: none;
    }
